$(document).ready(function(){
    $('.temporal-nav-top').each(function(){
        $(this).bind("mouseenter mouseleave", function(event){
            $(this).toggleClass("temporal-nav-top-over");
        });
    });
}); 

