	function InitHover()
	{ 
	//if ($.browser.msie && $.browser.version < 7 ) {
	if ($.browser.msie) {
	//if ($.browser.msie & $.browser.version < 7) {
   // Internet Explorer is a sadist.

	    //jQuery('#bottomMenu ul,.userSmall,.chartTbl tr,ul li,.dataTbl tr').hover(function() 
		jQuery('ul.bottomNav li,.signUpBut,.submitBut,.buzzList li').hover(function()																					
	    {
            jQuery(this).addClass('hover');
			

        }, function() 
        {
            jQuery(this).removeClass('hover');
        });
	} 
	}
	jQuery(document).ready(function(){	InitHover(); });