(function ($) {
    
 
    
    function animate_plane(){
        $("#airplaneBox").animate({right:"800px"},20000,function(){
           $("#airplaneBox").css({right:"-500px" });
           animate_plane(); 
        });
        
    }
    
   
    
    $(document).ready(function() {	
    	

        
        $('.email').live('focus', function() {
        $(this).val('');
    	});
        
   
	    $('.submit_mail').live('click', function(){
	       var mail = $('.email').val();
	       if (mail=="" || mail=="Join Mailing List" || mail=="Wrong mail, please try again"){
	            alert('mail no good');
	       }else{
	             $.post("captainG/send_mail", { mail: mail},
	               function(data) {
	                 if(data){
	                     $('.mailing_list').html("<span style='color:#F15A24;'>thanks for joining<br />i'll send you a mail</span>").delay(3000).fadeOut(600);
	                 }else{
	                     $('.email').val('Wrong mail, please try again');
	                 }
	              });
	       }
	    });
        
       
          $('#carousel_bottom').jcarousel({
                wrap: 'circular',
                scroll:1
          });
        
        animate_plane();
      
      
        
       });      
  
}(jQuery));
