$(document).ready(function() {
	$('#push').hide();
	$.timer(600, function (timer) {
	    $('#push').show('blind', {direction: 'vertical',easing: 'easeOutBounce'}, 600); 
	    timer.stop();
	});
	
	$('#hiddeninfo').hide();
	$('#showinfo a').click(function() { 
		$('#hiddeninfo').toggle('blind', {direction: 'vertical',easing: 'easeInOutSine'}, 300); 
	});

});