jQuery(document).ready(function(){

	jQuery('img.main-background').stop().fadeIn(3000, function(){
		jQuery('h2.first').width(0).css({overflow: 'hidden', whiteSpace: 'nowrap'}).stop().animate({width: 640}, 6000, function(){
			jQuery('h2.second').width(0).css({overflow: 'hidden', whiteSpace: 'nowrap'}).stop().animate({width: 640}, 6000);
		});
	});

});
