$(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($("artista")); //$(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(); });