var Geral = {

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

}

$(document).ready(function(){
	Geral.__construct();
	
	
		$('.j-img').cycle({ 
	fx:      'fade',
    delay:   -2000,
	timeout: 9000,
	pager: '#bt-animacao',
	cleartypeNoBg: true
	
	});

	$('#enviar').click(function(){
		$form = $('#formulario');
		end = $form.attr('action');
		//alert(end);
		
		$.post(end,
			   $form.serialize(),
			   function(data){
				   		$('#osx-modal-data p').html(data);
				   })
	})
	
	


});


