/**
 * navigation primaire.
 */
 
$(function()
{
      $("ul#navigation li.menu").hover(
            function(){
                  $(this).css("background","url('fileadmin/templates/images/"+$(this).attr('id')+"_on.jpg') left top no-repeat");
                  return false;
            },
            function(){
                  $(this).css("background","url('fileadmin/templates/images/"+$(this).attr('id')+".jpg') left top no-repeat");
                  return false;
            }
      );
      
      $("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') left top no-repeat");
                  return false;
            },
            function(){
                  $(this).children("ul.sous_menu").hide("normal",function() {
                        $(this).css("background","transparent");
                        return false;
                    });
                  return false;
            }
      );
      
      $("div.player_boutons a.fleche_gauche").hover(
            function(){
                  $(this).children('img').attr('src','fileadmin/templates/images/fleche_player_gauche_on.jpg');
                  return false;
            },
            function(){
                  $(this).children('img').attr('src','fileadmin/templates/images/fleche_player_gauche.jpg');
                  return false;
            }
      );
      
      $("div.player_boutons a.fleche_droite").hover(
            function(){
                  $(this).children('img').attr('src','fileadmin/templates/images/fleche_player_droite_on.jpg');
                  return false;
            },
            function(){
                  $(this).children('img').attr('src','fileadmin/templates/images/fleche_player_droite.jpg');
                  return false;
            }
      );
});