Cufon.replace('.content h1, .side2 h1, .content h4');


$(function(){
	$('.pictures img').hover(
			function(){    
				$(this).css("background-color", "#eeeeee");			
			},
			function(){
				$(this).css("background-color", "#ffffff");
			});
			
			
	if ($('.slideshow').cycle != null) {
	    $('.slideshow').cycle({
			fx: 'fade' 
		});
	}
	
	$("a.lightbox").fancybox();
	
	
	$("#select-ville li").hover(function(){
		$(this).find("span:first").animate({opacity: "0.4"}).slideDown(100);
	}, 
	function(){
		$(this).find("span:first").slideUp(100); 
	});
	
	
	$("#select-ville li a").click(function() { return false; });
	$("#select-ville li a").mouseup(function(){
		
		$('html, body').animate({
		scrollTop: $($(this).attr("href")).offset().top
		}, 500);
		
	});
		
		
	var a = document.getElementsByTagName('a');
	for (var i=0; i < a.length; i++)
		if (a[i].className == 'external')
			a[i].onclick = function() { window.open(this.href); return false; };


});
			
