// SCRIPT DO MODAL DAS IMAGENS

hs.graphicsDir = '_imagens/galeria/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
hs.dimmingOpacity = 0.75;

// Add the controlbar
hs.addSlideshow({
	//slideshowGroup: 'group1',
	interval: 2000,
	repeat: true,
	useControls: true,
	fixedControls: 'fit',
	overlayOptions: {
		opacity: .75,
		position: 'bottom center',
		hideOnMouseOut: true
	}
});
hs.registerOverlay({
	overlayId: 'closebutton',
	position: 'top right',
	fade: 2
});

$(function () {
	if ($.browser.msie && $.browser.version < 7) return;
	$('#MENU li').removeClass('itens').find('a').append('<span class="hover" />').each(function () {
		var $span = $('> span.hover', this).css('opacity', 0);
		$(this).hover(function () {
			// on hover
			$span.stop().fadeTo(400, 1);
		}, function () {
			// off hover
			$span.stop().fadeTo(400, 0);
		});
	});
	$(".imagens-dep a.highslide, .sem-imagem, .thumb, #destaque-int .colunas").corner("5px");
});


$(document).ready(function(){
	$("#salas-comerciais #thumbs .thumb").css("margin", "15px");
});


/*
//Rodapé - exibição depoimentos
$(document).ready(function(){
	$("li.first").click(function () { 
      $("li.maior").toggle("slow"); 
    });
});
*/