  $(function(){
	  
	  $("#menu").superfish({
		  delay: 500,
		  animation: {opacity:'show'},
		  speed: 'fast',
		  autoArrows: false,
		  dropShadows: false
	  });
	  
	  $(".null").click(function(){
		  return false;
	  });
	  
	  $(".online_sale, .online1, .online2").hover(function(){
		  $(this).css({opacity:0.7});
	  },function(){
		  $(this).css({opacity:1});
	  });

	  
	  $(".bandwith em").hover(function(){
		  $(this).parents(".bandwith").children("span").fadeIn();
	  },function(){
		  $(this).parents(".bandwith").children("span").fadeOut();
	  });
	  
  });
