$(document).ready(function() {
	
	/********************************************************************************************************************
	SIMPLE ACCORDIAN STYLE MENU FUNCTION
	********************************************************************************************************************/	
	$('div.accordionButton').click(function() {
		$('div.accordionContent').slideUp('normal');	
		$(this).next().slideDown('normal');
	});
	
	$('div.accordionButton').hover(
      function () {
       // $(this).append($("<img src='img/pat1.gif' alt='artista' width='32' height='32'>"));
		//$(this).css({ background: "url('img/pat1.gif')"});
		//$(this).css({ background: "#ffffff"});
      }, 
      function () {
        //$(this).find("img:last").remove();
		//$(this).css({ background: "#53a4d2"});
      }
    );

		
	/********************************************************************************************************************
	CLOSES ALL DIVS ON PAGE LOAD
	********************************************************************************************************************/	
	$("div.accordionContent").hide();

});
