jQuery(document).ready(
	function() {
		var arr2 = [ 42, 204, 314, 406, 545, 702, 918  ];
		jQuery('.buttons a').each(function(j){var i=j+1; 
		jQuery("#obj"+i).hover(
			function(){
			jQuery('.obj'+i+' span')
				.css({'display':'block', 'opacity':0, 'left':arr2[j], top:10 })
				.animate({top:0, 'opacity':1 }, 350);
			},
			function(){
				jQuery('.obj'+i+' span').fadeOut('fast');
			}
		);
		});
		var W = (jQuery(document).width()-1117)/2;
		jQuery('#ship1')
			.css({'display' : 'block', 'opacity':0, 'left': W })
			.animate({ 'left':180+W, 'opacity': 1 }, 900, function(){jQuery('#ship1')
			.show(function(){
				jQuery('#ship2')
					.css({'display' : 'block', 'opacity':0, 'left': 1100+W })
					.animate({ 'left':880+W, 'opacity': 1 }, 1400, function(){jQuery('#ship2')
					.show(function(){
						jQuery('#zeppe')
							.css({left:551+W})
							.fadeIn('slow');
					}
					);});	
				}
		);});
}
)

jQuery(window).resize(
	function() {
	var W = (jQuery(document).width()-1117)/2;
		jQuery('#ship1').css({ 'left':180+W});
		jQuery('#ship2').css({ 'left':880+W});
		jQuery('#zeppe').css({ 'left':551+W});
}
)





