$(document).ready(function() {
    $('#topMenu li a').hover( function(){
        if($(this).attr("class")!="active"){
            $(this).css('background-image', 'url(/images/v2/bg_menu_item_active.png)');
            $(this).css('border-bottom', '1px solid #058dc0');
            $(this).prev("span").removeClass("leftCorner");
            $(this).prev("span").addClass("leftCornerOn");
            $(this).next("span").removeClass("rightCorner");
            $(this).next("span").addClass("rightCornerOn");
        }
    },
    function(){
        if($(this).attr("class")!="active"){
            $(this).css('background-image', 'url(/images/v2/bg_menu_item.png)');
            $(this).css('border-bottom', '1px solid #fff');
            $(this).prev("span").removeClass("leftCornerOn");
            $(this).prev("span").addClass("leftCorner");
            $(this).next("span").removeClass("rightCornerOn");
            $(this).next("span").addClass("rightCorner");
        }

    });
});
