// Efeito Banner
$(document).ready(function() {
    $('#banner').before('<div id="banner" class="banner">').cycle({
        fx:     'scrollLeft',
        speed:  'slow',
        startingSlide: 0,
		timeout: 6000,
        pager:  '#banner'
    });
});

// Efeito Assinatura
$(document).ready(function(){
	$("#assinatura").fadeTo("slow", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$("#assinatura").hover(function(){
	$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		},function(){
		$(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
	});
});

// Efeito Menu 
$(document).ready(function() {
	// set opacity to nill on page load
	$("a.nav span").css("opacity","0");
	// on mouse over
	$("a.nav span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, "slow");
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, "slow");
	});
});

// Efeito Form
$(document).ready(function(){
	$("div.resposta a").click(function(){
		$("div.resposta").fadeOut("slow");
		});
});

// Innerfade
$(document).ready(function(){
	$('ul.fotos').innerfade({
		speed: 'slow',
		timeout: 3500,
		type: 'sequence',
		containerheight: '300px'
	});

	$('ul.textos').innerfade({
		speed: 'slow',
		timeout: 3500,
		type: 'sequence',
		containerheight: 'auto',
		animationtype: 'fade'
	});
});

// Mask Form
$(document).ready(function(){
   $("#fone").mask("(99) 9999-9999");
   $("#celular").mask("(99) 9999-9999");
   $("#cep").mask("99999-999");
});
