$(document).ready(function() {
	
	$('#errorMsg').hide();
	
	setTimeout("$('.fixedwrapperHome').animate({ marginBottom: '0' }, 800 );", 1200);
	setTimeout("$('#logoHome').hide();", 1200);   
	setTimeout("$('.fixedwrapperHome').animate({ marginBottom: '-270px' }, 800 );", 3000);
	setTimeout("$('#logoHome').show();", 3800);
    
    
	$("#menuHelpHome,#menuHelp,#logoHome,#logo,.logoSmall").toggle(
      function(){
        $("#fixedwrapper").animate({ marginBottom: "0" }, 800 );
        setTimeout("$('#logo,#logoHome').hide();", 100);
        setTimeout("$('#menuDown').show();", 100);
        setTimeout("$('#menuDown').css({'display' : 'block'});", 100);
        setTimeout("$('#menuUp').hide();", 100);
      }, 
      function(){
        $("#fixedwrapper").animate({ marginBottom: "-270px" }, 800 );
        setTimeout("$('#logo,#logoHome').show();", 670);
        setTimeout("$('#menuDown').hide();", 700);
        setTimeout("$('#menuUp').show();", 700);
    });
    
});


