﻿
$(document).ready(function() {
    topNavMouseover();
});

function topNavMouseover() {
    $buttons = $('#topnav_tabs li a:not(.currentSelection)');
    $buttons.each(function() {
        $(this).hover(function() {
            $(this).addClass('hover');
        }, function() {
            $(this).removeClass('hover');
        });
    });
}

