﻿$(document).ready(function() {

	$("div.faqText ul li").each(function() {
  	  	$(this).children("p").addClass('show');
        	$(this).children("p").hide();
	});

  	$("div.faqText ul li h3").click(function() {
  		if ($(this).parent().children('p').is(".show")) {
    			$(this).parent().children('p').show("fast");
     			$(this).parent().children('h3').removeClass("close");
      			$(this).parent().children('h3').addClass("open");           
		}
    		else {
    			$(this).parent().children('p').not(".show").hide("fast");
      			$(this).parent().children('h3').removeClass("open");
      			$(this).parent().children('h3').addClass("close");  
		}
		$(this).parent().children('p').toggleClass('show');
  	});
  	
  		if(location.search=="?searchresult")
  	{
  		
  		$("div.faqText ul li p").show("fast");
  	}
  	
});

