	function InitHover()
	{
	    jQuery('#bottomMenu ul,.userSmall,.chartTbl tr,ul li,.dataTbl tr').hover(function() 
	    {
            jQuery(this).addClass('hover');

        }, function() 
        {
            jQuery(this).removeClass('hover');
        });
	}
	//jQuery(document).ready(function(){	InitHover(); });