// JavaScript Document
$().ready(function(){
	$("#bt_ask").click(function(){
		window.open("http://www.carnetdecroisieres.fr/renseignements-sur-les-croisieres.html");
	})
	.mouseover(function(){
		$(this).css("background-image","url(img/bt_ask_on.jpg)");
	})
	.mouseout(function(){
		$(this).css("background-image","url(img/bt_ask.jpg)");
	});
});
