$(document).ready(function(){

	
$(window).scroll(function () { 

$("#height").text("hello");
//setInterval(function(){
var top = $(window).scrollTop();
if(top>396){
  $("#menu").clearQueue();
  $("#menu").animate({top:top+50},500,"linear");
}
else {
  
  $("#menu").animate({top:396},500,"linear"); 
  $("#menu").clearQueue();
 }
 
});
//},300);

$("#menu2").click(function(){
	$("#contact").animate({top:0},1000,"swing");
});

$("#close_contact").click(function(){
	$("#contact").animate({top:-400},1000,"swing");
});


setInterval(function(){


 $(".ship").each(function() {
   coin = Math.random();
 X = Math.random();
 Y = Math.random();
 if(coin<0.4){
 $(this).clearQueue();
 $(this).delay(X*200).animate({top:X*40,left:(Y*40)-100},700+400*Y,"swing");
 }
 
 });

	
},1000);




});
