$(function()
{
  $(".top-menu-item").hover(function (e)
    {
        if ($(this).children(".top-menu-item-href").attr("rel") == "")
        {  
          $(this).css("background-color", "#333");
        }
      
        if ($(this).children(".top-menu-item-dropdown").length > 0)
        {
            if (e.pageX < ($(window).width() / 2))
            {
                //$(this).children(".top-menu-item-dropdown").css("left", "0px");
            }
            else
            {
                //$(this).children(".top-menu-item-dropdown").css("right", "0px");
            }
            $(this).children(".top-menu-item-dropdown").css("top", $(".top-menu").height() + "px");
            //$(this).children(".top-menu-item-dropdown").css("top", "auto");
            //$(this).children(".top-menu-item-dropdown").css("top", "50px");
            $(this).children(".top-menu-item-dropdown").show();
            //$(this).children(".top-menu-item-dropdown").css("z-index", "9999");
        }
    }, function ()
    {
        $(this).css("background-color", "#7B7F7F");
        if ($(this).children(".top-menu-item-href").attr("rel") != "")
        {
           $(this).css("background-color", $(this).children(".top-menu-item-href").attr("rel"));
        } 
        if ($(this).children(".top-menu-item-dropdown").length > 0)
        {
            $(this).children(".top-menu-item-dropdown").hide();
        }
    });
  
  $(".top-menu-item").each(function()
  {
    $(this).attr("width", (935 / ($(".top-menu-item").length - 1)) + "px");
    if ($(this).children(".top-menu-item-href").attr("rel") != "")
    {
       $(this).css("background-color", $(this).children(".top-menu-item-href").attr("rel"));
    } 
  })
  $(".top-menu-item:first").attr("width", "65px");
    
  $(".top-menu-item-href:first").html("<img alt='Home' src='/images/main/home.png' width='29' height='28' />");
  
});

