$(function(){		$('span.mailme').mailme();	Cufon.replace('.fontSpec', {hover:true});	Cufon.replace('.fontSpecShadow', {textShadow:"1px 1px 0 #000000"}); 		if($('.blockIndex a')[0]){		$('.blockIndex a').hover(			function(){			if ( $.browser.msie ) {				$(this).stop().animate({					right: '-10px'				});			}			else{				$(this).stop().animate({					 opacity: 0.8,					right: '-10px'				});			}		},		function(){			if ( $.browser.msie ) {				$(this).stop().animate({					right: '0'				});			}else{				$(this).stop().animate({					opacity:1,					right: '0'				});			};		});		};	$('#lang li').hover(		function(){			$(this).stop().animate({				marginTop: '-10px'			});		},		function(){			$(this).stop().animate({				marginTop: '0'			});					}	);	if($('.slide')[0]){		$('.slide').anythingSlider({			easing: "easeInOutExpo",			autoPlay: false,			delay: 3000,			startStopped: false, 			animationTime: 600,			hashTags: true,      			buildNavigation: false,         			pauseOnHover: true,             			startText: "Go",             			stopText: "Stop"		});	}	if ($('#formContact')[0]) { 		$("#formContact").validate({		rules: {			nom: "required",			prenom: "required",			tel: "required",			email: {				required:true,				email: true			},			cp:"required",			ville:"required",			commentaire:"required"								},		meta: "validate",		errorClass:"error",		highlight: function(element, errorClass) {			$(element).fadeIn("slow",function() {			$(element).addClass(errorClass);			$(element).prev().animate({"marginLeft": "5px"},"fast",				function(){					$(this).animate({"marginLeft": "0"},"fast" ).css({'color':'#ff0000'});				});			});		},		unhighlight: function(element, errorClass) {			$(element).removeClass(errorClass)			$(element).prev().css({'color':'#fff'});		}		});	}});
