$(function(){
	$("#nav li a.current").parent().css({backgroundColor: "#f7f7f7"});
	($.browser.msie)? $("#nav li a").css({width: "1%", whiteSpace: "nowrap"}) : null;
	$("#nav li").hover(
      function () {      	
        $(this).css({backgroundColor: "#f7f7f7"});
      }, 
      function () {
        $(this).css({backgroundColor: "#ff4d49"});
       	($(this).children().hasClass("current"))? $(this).css({backgroundColor: "#f7f7f7"}) : null;
      }
    );
});
