$(document).ready(function(){
	fixNav();
	Calendar();
	Gallery();
	fixForm();
});

function fixNav(){
	$("#header #subnav li:last").css({
		"border": "none"
	});
}

function Calendar(){
	$(".kjo-link").remove();
	$(".event a").hover(function(){
		$(this).children("span").fadeIn("fast");
	},function(){
		$(this).children("span").fadeOut("fast");
	})
}

function Gallery(){
	$(".flickr-thumb a").attr({
		target: "_blank"
	});
}

function fixForm(){
	if($(".wpcf7-mail-sent-ok").length != 0){
		$(".reservation").remove();
	}
}