
$(document).ready(function(){
$('#cloud-01').css({backgroundPosition: '0 -80px'});
$('#cloud-02').css({backgroundPosition: '0 -30px'});
$('#mountains-03').css({backgroundPosition: '0 50px'});
$('#trees-04').css({backgroundPosition: '0 50px'});
$('#ground').css({backgroundPosition: 'left bottom'});
$('#branding').css({backgroundPosition: 'center 0'});
$('#content').css({backgroundPosition: 'center 0'});
$('#sec-content').css({backgroundPosition: 'center 0'});
$('#footer').css({backgroundPosition: 'center 0'});
$('#wrapper').css({overflow: "hidden"});

        //$('#klicker').click(function(){
               $('#ground').animate({backgroundPosition: '(-1800px bottom)'}, 5000);

        startHim();
        
        $("#nav").animate({top:"0%",marginTop:"0px"}, 8000);
        $("#sub").animate({left:"72%",marginLeft:"-150px"}, 6500);
        $("#fish_banner_container").animate({left:"27%",marginLeft:"-150px"}, 8000);
        $("#dark_fish").animate({left:"100%",marginLeft:"-150px"}, 15000);
        $("#bottom_container").animate({left:"0%",marginLeft:"-259px"}, 5000);
        //});

});

var num = 1;

function startHim(){
        num++;
        $("#sub").animate({top:"-=20px"},800).animate({top:"+=20px"},800);
        $("#bubbles").animate({top:"-=15px"},800).animate({top:"+=5px"},800);
        if(num<4){
                setTimeout("startHim()",300);
        } else {
                setTimeout("bounceHim()",300);
        }
}

function bounceHim(){
        $("#sub").animate({top:"-=4px"},800).animate({top:"+=4px"},800);
                $("#sub").animate({top:"-=8px"},800).animate({top:"+=8px"},800);
                $("#fish_banner,#dark_fish").animate({top:"-=5px"},800).animate({top:"+=5px"},800);
                $("#bubbles,#fish_bubbles").animate({top:"-=10px"},800).animate({top:"+=10px"},800);
        setTimeout("bounceHim()",750);
}

