// JavaScript Document
$(document).ready(function(){			

			 
 	     	$(function() {
      
		$("#dobro").animate({top:"50px"},1100).animate({top:"-=27px"},1100);

		
        $('#head1').hide();
         setTimeout(function() {
            $('#head1').fadeIn(200);
         },2200);    

      
         $('#head2').hide();
         setTimeout(function() {
            $('#head2').fadeIn(200);
         },2400);    
      
          
         $('#head3').hide();
         setTimeout(function() {
            $('#head3').fadeIn(200);
         },2600);    
      
       
         $('#head4').hide();
         setTimeout(function() {
            $('#head4').fadeIn(200);
         },2800);   
         
          $('#largeImg').hide();
         setTimeout(function() {
            $('#largeImg').fadeIn(100);
         },2800);    
         
           $("#logo, #welcome").hide();
         setTimeout(function() {
            $("#logo, #welcome").fadeIn(200);
         },3000);   
                  
         $('#flags_language_selector').hide();
         setTimeout(function() {
            $('#flags_language_selector').fadeIn(200);
         },3200);    
         
         
         $('#medlem, #medlem_se').hide();
         setTimeout(function() {
            $('#medlem, #medlem_se').fadeIn(200);
         },3400);  
           
      
      });
      
       $(this).delay(2800,function(){
         $("#head1, #head2, #head3, #head4, #logo_c, #dobro").show();
         setTimeout(function() {
            $("#head1, #head2, #head3, #head4, #logo_c, #dobro").fadeOut(200);
         },100);    
      
      });    
            
      		
 }); 	


