﻿

		$(function() {
			$(".vacmoreContainer").hide();
			$(".showButton").click(function() {

				$(this).text = ($(this).text() == "Show job detail") ? $(this).text("Hide job detail") : $(this).text("Show job detail");
				var panel = $(this).parent().prev(".vacmoreContainer");
				if (panel.is(":visible")) {
					panel.hide("300");
					panel.parent().css("background-color", "#ffffff");
				} else {
					panel.show("300");
					panel.parent().css("background-color", "#fff7e9");
				}

			});
		});
		
	