/* NOTE: Because of a bug in jQuery with IE8 there is an IE stylesheet hack to get the system to work in all browsers. */
$(document).ready(function() {
	 
	$('.accordionButton').click(function() {

		$('.accordionButton').removeClass('acc_on');
	 	$('.accordionContent').slideUp('normal');
   
		if($(this).next().is(':hidden') == true) {
			$(this).addClass('acc_on');
			$(this).next().slideDown('normal');
		 } 
		  
	 });
	  
	//ADDS THE .OVER CLASS FROM THE STYLESHEET ON MOUSEOVER 
	$('.accordionButton').mouseover(function() {
		$(this).addClass('acc_over');
	}).mouseout(function() {
		$(this).removeClass('acc_over');										
	});
	
/* CLOSES ALL ON PAGE LOAD */	
	$('.accordionContent').hide();
	$('.first').show();

});

