$(document).ready(function(){
	$('#topo li a').hover(function(){ $(this).parent().find('div').show(); }, function(){ $(this).parent().find('div').hide(); });
	$('#topo li div').hover(function(){ $(this).show(); }, function(){ $(this).hide(); });
	$('#destaques .scrollable').scrollable({size:1}).circular().navigator().autoscroll({steps:1,interval:4000});
	$("#imgsMini img").click(function(){
		$("#imgsMini img").css({'border-color':'black'});
		$(this).css({'border-color':'red'});
		var url = $(this).attr("src").replace("mini/", "");
		var wrap = $("#imgMaior").fadeTo("medium", 0.5);
		var img = new Image();
		img.onload = function(){
			wrap.fadeTo("fast", 1);
			wrap.find("img").attr("src", url);
		};
		img.src = url;
	}).filter(":first").click();
	$('#produtos .produto').hover(function(){ $(this).find('span').addClass('hover'); }, function(){ $(this).find('span').removeClass('hover'); });
	$('.mapadosite a').hover(function(){ $(this).addClass('hover'); }, function(){ $(this).removeClass('hover'); });
});