function resizeContent(){
    height = $(window).height() - $('#footer').outerHeight();
	width = $(window).width() - 80;
//	alert($('#footer').css('margin-left'))
	if($.browser.msie){
	    $('#footer').css({'position' : 'fixed', 'top' : height + 'px', 'width' : width + 'px'})
	}else{
	    $('#footer').css({'position' : 'fixed', 'top' : height + 'px'})	
	}
    $('#content').css('margin-bottom', $('#footer').outerHeight() + 'px')
}

