/* LIGHTBOX(NOTICIAS DETALHES) */
hs.graphicsDir = 'images/graphics/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
hs.headingEval = 'this.thumb.alt';
hs.headingOverlay.position = 'below';
hs.addSlideshow({
	interval: 5000,
	repeat: false,
	useControls: true,
	fixedControls: 'fit',
	overlayOptions: {
		opacity: .75,
		position: 'bottom center',
		hideOnMouseOut: true
	}
});
/* FIM LIGHTBOX(NOTICIAS DETALHES) */
$(document).ready(function() {
	$("#home-right li").mouseenter(function() {
		$("a img:first-child", this).animate({top: "-93px"}, 200);
		$("a img + img", this).animate({top: "0"}, 200);
	});
	$("#home-right li").mouseleave(function() {
		$("a img:first-child", this).animate({top: "0"}, 200);
		$("a img + img", this).animate({top: "93px"}, 200);
	});
	$("input[name='ctl00$cphConteudo$txtTelefone']").mask("(99) 9999-9999");
	/* 	BANNER */
	$(".images > div").each(function(){
		$(".slidetabs").append("<a href='javascript:;'></a>");
	});
	$(".slidetabs").tabs(".images > div", {
		effect: 'fade',
		fadeOutSpeed: "slow",
		rotate: true
	}).slideshow({ autoplay: true, interval: 6000});
});


