$(document).ready(function() {
	$('#push').hide();
	$.timer(600, function (timer) {
	    $('#push').show('blind', {direction: 'vertical',easing: 'easeOutBounce'}, 600); 
	    timer.stop();
	});
	
});