var LOGOS_MOVEMENT_TIME = 1500;
var BUTTONS_SHOW_TIME = 1500;

$(document).ready (function() {

	// Load facebox
	$('a[rel*=facebox]').facebox();

	// Animate Titles
	animateTitles();

});

function animateTitles () {



	/*
	Para hacerlo todo del tir—n habr’a q poner
	
	$("loquesea").animate({
		height:200, width:400, opacity: .5
	}, 1000, "linear", function(){alert("all done");} );


	*/

	// Animate from outside to inside
	
	// Animate top element
	$('#topContent').animate({'marginLeft' : "+=100%"
	},
		{
    		duration: LOGOS_MOVEMENT_TIME, 
		    specialEasing: {
		    	marginLeft: 'easeOutBack'
	    	}
    	}
    );
	
	// Animate bottom element
	$('#bottomContent').animate(
		{
		    'marginRight' : "+=100%"
		},
		{
    		duration: LOGOS_MOVEMENT_TIME, 
		    specialEasing: {
		    	marginRight: 'easeOutBack'
	    	}, 
	    	complete: function() {
	    		/*$(this).animate({
			    	'marginLeft' : "+=100%",
				},
				{
    			duration: LOGOS_MOVEMENT_TIME, 
			    	specialEasing: {
			    		marginLeft: 'easeOutBack'
	    			}
    			});*/
    			
    			$('#pre_buttons').animate({
    				opacity: '1.0',
					filter: 'alpha(opacity=100)'
				}
    			,BUTTONS_SHOW_TIME
    			);
    			
    			$('#centerContent').animate({
    				opacity: '1.0',
					filter: 'alpha(opacity=100)'
				}
    			,1
    			);
    		}
    	}
	);


	// Animate from center to top and bottom
}


