$(document).ready(function() {
    
    $("#navMain ul li.root").hover(function() {
        $(this).addClass("hover");
        var bgLeft = $(this).position()['left'] + Math.round ( ( $(this).width() - 201 ) / 2 ) + "px";
        $("#navMain div.bg-hover").css("left", bgLeft);
        $("#navMain div.bg-hover").show();
    }, function() {
        $(this).removeClass("hover");
        $("#navMain div.bg-hover").hide();
    });

    $("#navMain ul li").hover(function() {
        $(this).addClass("hover");
    }, function() {
        $(this).removeClass("hover");
    });

    $("#bNews li").hover(function() {
        $(this).addClass("hover");
    }, function() {
        $(this).removeClass("hover");
    });

    $("#bAuto div.models li").hover(function() {
        $(this).addClass("hover");
    }, function() {
        $(this).removeClass("hover");
    });

    $("#bNewsList li").hover(function() {
        $(this).addClass("hover");
    }, function() {
        $(this).removeClass("hover");
    });

    $("#bPressList li").hover(function() {
        $(this).addClass("hover");
    }, function() {
        $(this).removeClass("hover");
    });


    $("#bNewsAnnounce div.announce").hover(function() {
        $(this).addClass("hover");
    }, function() {
        $(this).removeClass("hover");
    });

});
