$(document).ready(function() {	
	$('.container').css({'top':'-130px'});
	$('.logo').css({'top':'-250px'});
	
});

$(window).load(function() {				   
    $('.container')
            .animate(
                { top: 0 }, {
                    duration: 1000,
                    easing: 'easeOutBounce'
                });
	
	$('.logo').animate(
                { top: 15 }, {
                    duration: 1200,
                    easing: 'easeOutBounce'
                })
			.animate(
                { top: 0 }, {
                    duration: 'slow',
                    easing: 'easeOutBack'
                });
	    
});
