/* animate intro buttons */

$(document).ready(function(){							
	$(".bouton").append("<span></span>");	
	$(".bouton a").hover(function() {
		var e = this;
	    $(e).stop().animate({ marginLeft: "-6px" }, 250);
	    $(e).find("img").stop().animate({ width: "110%", height: "auto" }, 250);
	    $(this).parent().find("span").stop().animate({ width: "106%", height: "auto", marginLeft: "-6px", opacity: 0.75 }, 200);
	},function(){
		var e = this;
	    $(e).stop().animate({ marginLeft: "0px" }, 250);
	    $(e).find("img").stop().animate({ width: "100%", height: "auto" }, 250);
	    $(this).parent().find("span").stop().animate({ width: "100%", height: "auto", marginLeft: "0px", opacity: 0.75 }, 200);
	});
});

/* ouvre nouvelle fenêtre pour lien avec http */

$('a[href^=http]').click( function() {
	window.open(this.href);
	return false;
});

