$(function(){
           $("ul#navigation li.menu").hover(
                 function(){
                       $(this).children("ul.sous_menu").show();
                       $(this).children("ul.sous_menu").css("background","url('fileadmin/templates/images/"+$(this).attr('id')+"_on.jpg') -1px top no-repeat");
                       return false;
                 },
                 function(){
                       $(this).children("ul.sous_menu").hide("normal",function() {
                   			$(this).css("background","transparent");
                       		return false;
                       	});
                       return false;
                 }
           );
     });
     
	