$(document).ready(function() {
	
	// visualizza dettagli stanze
	if ($(".off_stanza").length) {
		$(".off_stanza").hoverIntent(
			function () {
				$(".off_stanza .dettagli_stanza").hide();
				$(this).children(".dettagli_stanza").show("slow");
			},
			function () {
				$(this).children(".dettagli_stanza").hide();
			}
		);
	}
});
