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