$(document).ready(function() {
	$("#test").click(function () {
		var status = $(".box").css("display");
		var path = window.location.pathname.toString();
		var test_path = path.indexOf("tour.php");
		if (test_path > 0) {
			if (status == "none") {
				$(".box").css("display","block");
				$("#test").html("Chiudi finestra");
			} else {
				$(".box").css("display","none");
				$("#test").html("Apri finestra");
			}
		} else {
			if (status == "none") {
				$(".box").css("display","block");
				$("#test").html("Chiudi finestra");
			} else {
				$(".box").css("display","none");
				$("#test").html("Apri finestra");
			}
		}
	});
	$('#home_button').flash( {
		swf: 'images/home.swf',
		height: 50,
		width: 147
	});
	$('#europa_button').flash( {
		swf: 'images/europa.swf',
		height: 50,
		width: 147
	});
	$('#italia_button').flash( {
		swf: 'images/italia.swf',
		height: 50,
		width: 147
	});
	$('#hotel_button').flash( {
		swf: 'images/hotel.swf',
		height: 50,
		width: 147
	});
	$('#contact_button').flash( {
		swf: 'images/contact.swf',
		height: 50,
		width: 147
	});
	var path = window.location.pathname.toString();
	var test_path = path.indexOf("contact.php");
	if (test_path > 0) {
		$("#sendmessage").validate();
	}
	
	$("a[rel=ext]").click( function() { window.open(this.href); return false; });
});
