/***********************************************************************************************************************
This is the JavaScript required to create the accordion style menu.  Requires jQuery library
Because of a bug in jQuery with IE8 we had to add an IE stylesheet hack to get the system to work in all browsers.
************************************************************************************************************************/

$(document).ready(function() {
	 
	//ACCORDION BUTTON ACTION (ON CLICK DO THE FOLLOWING)
	$('.accordionButton').click(function() {

   
		//IF THE NEXT SLIDE WASN'T OPEN THEN OPEN IT
		if($(this).next().is(':hidden') == true) {
			
			//ADD THE ON CLASS TO THE BUTTON
			$(this).addClass('on');
			  
			//OPEN THE SLIDE
			$(this).next().slideDown('normal');
		 } 
		  
		  	$('.accordionContent').hide();
	 });
	


});
