// JavaScript Document
$.fn.pause = function(duration) {
    $(this).animate({ dummy: 1 }, duration);
    return this;
};

//$(function() {
		    $(window).load( function() {

		
	$("#leftHolder .overlay").pause(500).animate({"right": "1px"}, 1000,"easeOutBack",function(){
																			
	});
	$("#rightHolder .overlay").pause(500).animate({"left": "1px"}, 1000,"easeOutBack",function(){	 
		
		$("#rightHolder .rightHeader").animate({"bottom": "50px"}, 1000,"easeOutBack",function(){	 
																					 
		});	
		$("#rightHolder .overlay").pause(350).animate({"top": "-=5px"}, 400,"easeOutBack",function(){	 
																					 
		});
	});


});