$(document).ready(function() {
 
	//ACCORDION BUTTON ACTION
	$('h3.accordionButton').click(function() {
 
		if($(this).next().is(':visible')) {
			$('.accordionContent').slideUp('normal');
		} else {
			$('.accordionContent').slideUp('normal');	
			$(this).next().slideDown('normal');
		}
	});
	
	$('h3.accordionButton').hover(
    function(){
         $(this).css({color:'#a15d04'}); //mouseover
    },
    function(){
         $(this).css({color:'#401f03'}); // mouseout
    }
);
 
        //HIDE THE DIVS ON PAGE LOAD	
	$(".accordionContent").hide();
});
