/* 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() {
	$("input[name='telefone']").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: 10000});

	$("#sistema-de-producao ul li").hover(
		function () {
			$(this).children("a").children("img").stop();
			$(this).children("a").children("img").animate({left: "192px", opacity:1}, 200);
		},
		function () {
			$(this).children("a").children("img").stop();
			$(this).children("a").children("img").animate({left: "142px", opacity:0}, 200);
			
		}
	);
});


