$(document).ready(function() {
   $('.sf-menu').superfish({
      delay:       1000,
      animation:   {height:'show'},
      speed:       'normal',
      autoArrows:  false,
      dropShadows: false
   });
   
   $('#logo').children('.slogan').hide();
   $('.head_info').children('.yellow').nextAll().hide();
   $('#logo').animate({left:"5px"}, 500, function(){
	       $(this).children('.slogan').fadeIn(500)
	   });
   $('.head_info').animate({right:"3px"}, 500, function(){
	       $(this).children('.phone').fadeIn(300, function(){
			       $(this).next().fadeIn(300)
			   })
	   })
});
