(function($) {
	$(document).ready(function() {	
				
		$("#s").focus(function() {
			$(this).css({ color : '#000' }).val("");
		}).hover(function() {
			$(this).css({ color : '#000' });
		}, function() {
			$(this).css({ color : '#666' });
		});
		
		
		$('#site-menu ul li.page_item ul').hide();
		
		//when navigate to a child page show all pages
		$('#site-menu ul li.current_page_item').parent("ul").show();
		
		//show page list when toggle
		$('#site-menu ul li.active ul').show();
		
		//show cerrent page's child page
		$('#site-menu ul li.current_page_item ul').show();
 
	 	$('#site-menu ul li').click(function() { 
			$(this).addClass("active");
        });
        
        /* PRESS ROOM */
       	$(".answer").hide();
       	var vis = 0;
       	$(".show-answer").click(function() { 
       		if($(this).text() == "Show Answer") {
		       	$(this).parent().parent().parent().find(".answer").slideToggle();
		       	$(this).text("Hide Answer");
       		} else {
		       	$(this).parent().parent().parent().find(".answer").slideToggle();
		       	$(this).text("Show Answer");
       		}
       		return false;
       	});
       	$(".hide-answer").click(function() {
       		$(this).parent().parent().slideUp();
       		vis = 0;
       		return false;
       	});
						
	});
})(jQuery);
