var Geral = {

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

}

$(document).ready(function(){
	Geral.__construct();
	
	$('ul.thumb li').magicalHover({
	 		speedView:200,
	  		speedRemove:400,
	  		altAnim:true,
	  		speedTitle:400,
	  		debug:false
		});
		
		 $('.slideshow').cycle({
		fx: 'fade'
	});

		$('.kwicks').kwicks({
	max : 479,
	sticky: true,
	spacing : 0
	});
	
	$('.kwicks2').kwicks({
	max : 479,
	sticky: true,
	spacing : 0
	});
	
	$('.kwicks3').kwicks({
	max : 479,
	sticky: true,
	spacing : 0
	});
		
	//Animacao Clientes
	$(".anima-parceiros").cycle({
	fx: 'scrollHorz',
	delay: 1000,
	timeout: 8000,
	prev: '.seta-esquerda',
	next: '.seta-direita'
	});

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

});


