/*
 * website: http://www.worthapost.com
 */
Drupal.behaviors.tntIEFixes = function(context){
    // IE6 & less-specific functions
    // Add hover class to primary menu li elements on hover
    if ($.browser.msie && ($.browser.version < 7)) {
        $('#primary_menu_bar li').hover(function(){
            $(this).addClass('hover');
        }, function(){
            $(this).removeClass('hover');
        });
    };
    };
