$(document).ready(function() {

  var total = 0;
  var padding = 17;
  var maxwidth = $('#subnav').width() - 200;

  $('#subnav>ul>li').each(function(i){  
    if(total>=maxwidth) { $(this).find('ul').css({left : maxwidth}); }
    else { $(this).find('ul').css({left : total}); }
    total += $(this).width() + padding;
  });

  $('#subnav>ul>li').hover(
    function() { $(this).not('.selected').css({ background: "#308dca" }) },
    function() { $(this).not('.selected').css({ background: "url(/files/ns2/images/navi_norm.png)" }) }
  );
	
  $('#subnav>ul>li').hover(
    function() { $(this).not('.selected').find('a:first').css({ color: "#FFF" }) },
    function() { $(this).not('.selected').find('a:first').css({ color: "#FFF" }) }
  );
	
  $('#subnav>ul li').hover(
    function() { $(this).children('ul').show() },
    function() { $(this).children('ul').hide() }
  );
});