    $(function(){

	$('h2').css({left:'800px'})
 
        jQuery.easing.def = 'easeOutBounce';
        setTimeout(animate, 1200);
    });
 
    function animate()
    {
        $('h2').animate({left:0}, 900);
	}