$(document).ready(function(){
	
	/*Expand/Collapse
	-----------------------------------------------*/
	$("h2.expand").toggler({ 
		//initShow: "div.collapse:first", 
		speed: 200 
		});
   $("#faqcontent").expandAll({ 
   	trigger: "h2.expand", 
   	ref: "div.faqInnerWrap", 
   	speed: 200,
   	showMethod: 'slideDown', 
   	oneSwitch: false 
   	});
   	
   $(".stackFix").show();	
	
});

