jQuery().ready(function()
{
size = jQuery(document).height(); 

fixMenuSize(size);

 jQuery("td.member_cell").hover(function () {
      jQuery(this).css({'background-color' : '#283d74'});
    }, function () {
      var cssObj = {
        'background-color' : '#F3E8D6'
      }
      jQuery(this).css(cssObj);
    });

})
	
	function fixMenuSize(size){
	size = size - 253 - 25 - 85 - 43;
	
	if(size<200)
		size = 200;		
		
	document.getElementById('content').style.height = size + 'px';
	
	
	
}
