// JavaScript Document
// Lightbox functions
$(document).ready(function () {
	$("a[rel^='prettyBox']").prettyPhoto({
		animation_speed: 'fast', /* fast/slow/normal */
		slideshow: false, /* false OR interval time in ms */
		autoplay_slideshow: false, /* true/false */
		overlay_gallery: false
	});
	
	$(".indique").css("cursor", "pointer");
	$(".indique").click( function() {
		$.prettyPhoto.open('/cliente/postal.php?iframe=true&width=800&height=280','Indique à um amigo','');
	});


	$(".ficha").css("cursor", "pointer");
	$(".ficha").click( function() {
		$.prettyPhoto.open('/ficha/index.php?iframe=true&width=100%&height=100%','Ficha de reserva','');
	});

});
