// JavaScript Document
$(document).ready(function() {
   //Initialisation du rool over de la nav
   $('#nav img').each(function() {
	 	var imag = $(this).attr('src');
		img_u = imag.split('_');
		if (img_u.length==1)
		{
			$(this).hover(function() {
				ur_img = $(this).attr('src')
				img_ur = ur_img.split('.');
		   		$(this).attr('src',img_ur[0]+'_hover.gif');
			},
		   	function() {
		   		$(this).attr('src',imag);
			});
		}
	 });
});


