$(document).ready(function() {	if(($.browser.msie) || ($.browser.mozilla && $.browser.version <= "1.9.1") || ($.browser.safari && $.browser.version <= "528.18")) {		Cufon.replace('#presentation, .desc-shot, .title-shot, .link-shot, #presentation > .titre, #presentation > .description, #navigation ul li a, .bloc-slogan, .bloc-description, .bloc-titre', {			fontFamily: 'DIN Regular',			fontStretch: 'normal'		});	}	$(".even").mouseover(function(){$(this).removeClass("even"); $(this).addClass("odd");					}).mouseout(function(){	$(this).removeClass("odd");	$(this).addClass("even");});		$("#facebook").mouseover(function(){$(this).attr("src", "images/bouton/btn-facebook-over.jpg");					}).mouseout(function(){	$(this).attr("src", "images/bouton/btn-facebook.jpg");});	$("#twitter").mouseover(function(){$(this).attr("src", "images/bouton/btn-twitter-over.jpg");					}).mouseout(function(){	$(this).attr("src", "images/bouton/btn-twitter.jpg");});	$("#linkedin").mouseover(function(){$(this).attr("src", "images/bouton/btn-linkedin-over.jpg");					}).mouseout(function(){	$(this).attr("src", "images/bouton/btn-linkedin.jpg");});		$("#map").mouseover(function(){$(this).attr("src", "images/bouton/btn-map-over.jpg");					}).mouseout(function(){	$(this).attr("src", "images/bouton/btn-map.jpg");});		$("#shop").mouseover(function(){$(this).attr("src", "images/bouton/btn-shop-over.jpg");					}).mouseout(function(){	$(this).attr("src", "images/bouton/btn-shop.jpg");});		$("#share").mouseover(function(){$(this).attr("src", "images/bouton/btn-share-over.jpg");					}).mouseout(function(){	$(this).attr("src", "images/bouton/btn-share.jpg");});});
