// JavaScript Document
$(document).ready(function(){
                     
        $(this).delay(1000,function(){
        $("#titlebar").fadeOut(10500);
    });
    
    $(this).delay(1500,function(){
        
        //Show the elements 
        $(".style").stop().animate({top:'390px'}, {queue:false, duration:1750, easing: 'easeInOutBack'});
        $(".lou").stop().animate({top:'340px'}, {queue:false, duration:1500, easing: 'easeInOutBack'});
        $(".chef").stop().animate({top:'345px'}, {queue:false, duration:2250, easing: 'easeInOutBack'});
        $(".nurse").stop().animate({top:'377px'}, {queue:false, duration:2000, easing: 'easeInOutBack'});
        
    });
  });


