// JavaScript Document
	$(document).ready(function(){ 

		$('#containerImagemProduto').cycle({ 
			speed:  1500, 
			timeout: 8000, 
			next:   '#proxProd', 
			prev:   '#anteProd',
			before: onBeforeProduto
		});
		function onBeforeProduto(){
			$("#legendaProduto").html(this.title);	
		}
		
		$('#containerImagemDestaque').cycle({ 
			speed:  1000, 
			timeout: 5000,
			next:   '#proxDest', 
			prev:   '#anteDest',
			before: onBeforeDestaque
		});
		function onBeforeDestaque(){
			$("#textoLegenda").html(this.title);	
		}
		
		$('#containerImagemLoja').cycle({ 
			fx:     'fade', 
			speed:  1000, 
			timeout: 6000
		});

		// Prettybox
		$("a[rel^='prettyOverlay'],a[rel^='prettyPhoto']").prettyPhoto({
			animationSpeed: 'normal', 
			padding: 40, 
			opacity: 0.85, 
			showTitle: true, 
			allowresize: 1 	
		});
		
		// Máscaras
		$('input[@name=data_nascimento]').mask('99/99/9999');
		$('input[@name=telefone]').mask('(99)9999-9999');
		$('input[@name=celular]').mask('(99)9999-9999');
	 	$('input[@name=cep]').mask('99999-999');

	}); 
	
	// Funçõo para gerar o calendário
	function calend(m,a){
		$.get("calendario.php?mes="+m+"&ano="+a,function(data){
			$("#barraMes").html(data);
		});
	}

