			function preLoadImages(url)
			{
					var img = new Image();
				img.src=url;
					return img;
			}
            $(document).ready(function(){
					$('#lien-accueil').mouseover( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/house-hov.png");});
					$('#lien-accueil').mouseleave( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/house.png");});
					$('#lien-cv').mouseover( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/cv-hov.png");});
					$('#lien-cv').mouseleave( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/cv.png");});
					$('#lien-blog').mouseover( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/wordpress-hov.png");});
					$('#lien-blog').mouseleave( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/wordpress.png");});
					$('#lien-contact').mouseover( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/arobase-hov.png");});
					$('#lien-contact').mouseleave( function(){ $(this).find('img').stop(true, true).attr("src", home + "img/design/arobase.png");});
					$('#sengine').click( function(){ $('#search-engine').submit();});
					$('#input-search').focus( function(){ $(this).attr("value","");});
					$('#submit-js').click(function(){ $('#commentform').submit();});
					preLoadImages( home + "img/design/hover-li-menu.png");
					preLoadImages( home + "img/design/house-hov.png");
					preLoadImages( home + "img/design/cv-hov.png");
					preLoadImages( home + "img/design/wordpress-hov.png");
					preLoadImages( home + "img/design/arobase-hov.png");
					preLoadImages( home + "img/contenu/bouton-envoyer-on.png");
			});

