var Geral = {

	__construct: function() {
		_this = Geral;
		$("input[type='text'],input[type='password'],textarea").resetDefaultValue();
		$("a.lightbox").lightBox();
	}

}

$(document).ready(function(){
	Geral.__construct();
	
	$('.j-anima').cycle({
	fx: 'fade',
	delay: -3000,
	next: '.seta-direita',
	prev: '.seta-esquerda',
	cleartypeNoBg: true
	});
	
	$('.j-txt, .j-txtdir, .j-txtesq').cycle({
	fx: 'fade',
	delay: -3000,
	next: '.seta-direita',
	prev: '.seta-esquerda',
	cleartypeNoBg: true
	});


	
$("#enviarMural").livequery('click',function(){
    var nome = $('#nomeComentario').val();
    var email = $('#emailComentario').val();
    var msg = $('#desComentario').val();
    var flag = 'ok';
	
	
    if(nome==''){ flag= 'erro'; }
    if(email==''){ flag= 'erro'; }
    if(msg==''){ flag= 'erro'; }
	
	
    
    if(flag=='erro')
	{
	alert('Favor preecher os campos obrigatorios');
    return false;
	}
        $.post('mensagemSite',
		$('#form-contato').serialize(),
		function(data){
		  $('#muralcontent').html(data) 
		})	
		
		
   
    
})


});

