
// MOSNE FUNCTIONS

$(document).ready(function(){
  
  
  /*
  dwblind
  upblind
  homelogo
  fastcontact
  */
  
  
$("#upblind").css({"top":"-60%"});
$("#dwblind").css({"top":"110%"});
  
$("#homelogo, #fastcontact, #siderbar").hide();

setTimeout(function(){

    $("#upblind").animate({"top":"0%"},2000);
    $("#dwblind").animate({"top":"50%"},2000);   

},200);
setTimeout(function(){

    $("#homelogo").fadeIn(2000);

},1500);

setTimeout(function(){

    $("#fastcontact").fadeIn(900);

},2000);



}); //scope 