//Cufon replacement
<!--
Cufon.replace(['#sidebar h2','#sidebarRight h2','#main h2.cufon','.engagement p','#bloc-footer h2', '.franco-port'], {
    hover: true
});


jQuery(function(){
	jQuery('.produit_top li, .produit_vignette li').equalHeights();
	jQuery('.produit_top li, .produit_vignette li').equalWidths();
	jQuery('.search-input').example('Saisissez le nom');
	jQuery('#tjstj-tjstj').example('Votre adresse email');
	
	jQuery(".himg").hover(
		function(){
			jQuery(this).animate({opacity: "hide"}, "slow");
			jQuery(this).next().animate({opacity: "show"}, "slow");
		},
		function(){
			//silence
		}
		);
	jQuery(".bimg").hover(
		function(){
			//silence
		},
		function(){
			jQuery(this).animate({opacity: "hide"}, "slow");
			jQuery(this).prev().animate({opacity: "show"}, "slow");
		}
	);
	jQuery('.slideshow').cycle({
		fx: 'scrollUp',
		speed: 2000,
		timeout: 2000

	});

	jQuery('.produit_images a').lightBox();
	
});
//-->