$(document).ready( function() {

	// Code déclenché au chargement de la page
		$("#menu img").hover( function() {
			var nomImg = $(this).attr("id");
			if ( $(this).attr("src") != "/media/images/"+nomImg+"_select.png" ) {
				$(this).attr("src","/media/images/"+nomImg+"_hover.png");
			}
		}, function() {
			var nomImg = $(this).attr("id");
			if ( $(this).attr("src") != "/media/images/"+nomImg+"_select.png" ) {
				$(this).attr("src","/media/images/"+nomImg+".png");
			}
		} );
		
	//---

	if ( $.browser.msie ) {
		if ( $.browser.version == "6.0" ) {
			pngFix();
		}	
	}
	
});

