var Geral = {

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

}

$(document).ready(function(){
	Geral.__construct();

$('#animacao02').cycle({ 
	fx:'scrollHorz',
	timeout: 1000,
	next: '.seta-direita02',
	prev: '.seta-esquerda02',
	cleartypeNoBg: true	
	});
	
	$('.bt-incluir').click(function(){
		$('#xopcao').attr('value','add');
		end = $('#formnews').attr('action');
		$.post(end,
			   $('#formnews').serialize(),
			   function(data){
					$('#result').html(data);   
			   });
		 });
		
	$('.bt-excluir').click(function(){
		$('#xopcao').attr('value','del');
		end = $('#formnews').attr('action');
		$.post(end,
			   $('#formnews').serialize(),
			   function(data){
					$('#result').html(data);   
			   });	
          });

});


