jQuery(document).ready(function(){	
	
	//Content search hint
	jQuery("#contentSearchHint").hide();
	
	jQuery("input#contentSearchfield").bind("focus", function (){
		jQuery("#contentSearchHint").slideDown("slow");		
	});
	
	jQuery("input#contentSearchfield").bind("focusout", function (){
		jQuery("#contentSearchHint").slideUp("slow");		
	});	
	
	jQuery("h3.faqTrigger").bind("click", function (){
		jQuery(this).next("p.faqAnswer").slideToggle();
	});
	
});
