$(function() {
  $('.popup').nyroModal();
});	

$(document).ready(function(){
	
	$("#suscribirse_footer").validationEngine('attach', {
		onValidationComplete: function(form, status){
			if(status != false){
				var dataString = $("#suscribirse_footer").serialize(); 
				$.ajax({
					type: "POST",
					url: "http://goal-tech.com.mx/modular/suscribirse.php",
					data: dataString,
					success: function() {
						$('#s3').html("<div id='message'></div>");
						$('#message').html("<h2>Se envio su mensaje!</h2>")
						.append("<p>Gracias por suscribirse, pronto contactaremos con usted.</p>")
						.hide()
						.fadeIn(1500);
					}
				});
			}
		}
	});

	$('#sponsor li div.back').hide().css('left', 0);
    
	function mySideChange(front) {
		if (front) {
			$(this).parent().find('div.front').show();
			$(this).parent().find('div.back').hide();
            
		} else {
			$(this).parent().find('div.front').hide();
			$(this).parent().find('div.back').show();
		}
	}
    
	$('#sponsor li').hover(
		function () {
			$(this).find('div').stop().rotate3Di('flip', 250, {direction: 'clockwise', sideChange: mySideChange});
		},		
		function () {
			$(this).find('div').stop().rotate3Di('unflip', 500, {sideChange: mySideChange});
		}
	);
	
});



