$(document).ready(function(){
	//$("a[rel='fancy'").fancybox();
	$("a.external-link").click(function(event){
		event.preventDefault();
		window.open($(this).attr("href"));
	});

	/** Gestion animation sur la home **/
	$('ul.main_menu a').bind({
		mouseover:function(e){
			$('.contain_home').stop(true, true).animate({
				bottom:258
			}, 500,'easeOutCubic',function(){});
			$('.image_menu').stop(true, true).animate({
				height:120
			}, 500,'easeOutCubic',function(){}).show();
		}
	});

	$('ul.image_menu').bind({
		mouseleave : function(e){
			setTimeout(function(){
				if(!$.isHovered($('ul.main_menu')))
				{
					$('.contain_home').stop(true, true).animate({
						bottom:138
					}, 500,'easeOutCubic',function(){});
					$('.image_menu').stop(true, true).animate({
						height:0
					}, 500,'easeOutCubic',function(){});
				}
			},250);
		}
	});
});


