$(document).ready(function () 
{	
	$("a[rel='produtos']").colorbox();
	
	$("a[rel='foto']").colorbox({scalePhotos:true,maxHeight:'98%',maxwidth:'98%'});
	
	$("a[rel='mapa']").each(function()
	{
		$(this).colorbox({href: $(this).attr('href')+'&output=embed',width:"90%", height:"90%", title: $(this).attr('name'), iframe:true});
	});
	
	$("a[rel='video']").colorbox({iframe:true, innerWidth:425, innerHeight:344});

	$("#click").click(function()
	{
		$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"});
		return false;
	});
});
