// Background IE6
try { 
	document.execCommand("BackgroundImageCache", false, true); 
} 
catch(e) {} 

$(document).ready(function(){
	// Lightbox Casa.Livre
	$("#fotoCasa img").attr("rel", "Casa.Livre").colorbox({
		href: function(){ return $(this).attr('src'); },
		close: "X fechar",
		previous: "&laquo; ant.",
		next: "próx. &raquo;",
		current:"{current} de {total}"
	});
	
	// Lighbox detalhes
	$(".lightbox").colorbox({
		close: "X fechar",
		previous: "&laquo; ant.",
		next: "próx. &raquo;",
		current:"{current} de {total}"
	});
	
	// Lightbox Videos
	$(".abreVideos").click(function() {
		$.colorbox({
			rel: "videos",
			inline: true,
			href:".videos",
			close: "X fechar",
			previous: "&laquo; ant.",
			next: "próx. &raquo;",
			current:"{current} de {total}"
		});	
	});
	
	// ComboBox dos detalhes
	$(".jumpBox").change(function(){
		var $this = $(this);
		window.location.href = $this.attr("rel").replace("{value}", $this.val());
	});
});

