$(window).load(function() {
  $('a#login_button').click(function() {
    window.open('http://www.carrierweb.com/website/web.rlogin.php?u='+$('#username').val()+'&p='+$('#password').val());
    return false;
  })
  var length_submenu = 0;
  $("ul#menu").children("li").hover(function() {
    if(!$(this).children("ul").size() && !$(this).hasClass('hover'))
      $(this).addClass('hover');
  },function(){
    if(!$(this).children("ul").size() && $(this).hasClass('hover'))
      $(this).removeClass('hover');
  });
  $("ul#menu").children("li").each(function() {
    if($(this).children("ul").size()) {
      $(this).children("ul#submenu").children("li").each(function() {
        if ($(this).children("a").text().length>length_submenu) {
          length_submenu=$(this).children("a").text().length;
        }
      });
      if(length_submenu>19) {
        //$(this).children("ul#submenu").css("width",length_submenu*7.8);
        $(this).children("ul#submenu").css("width",length_submenu*9);
      } else {
        $(this).children("ul#submenu").css("width","165px");
      }
    }
  });
});

