(function(){

var api = {
	init: function(){
/*
		if ($('#side').height() > $('#content').height())
		{
			$('#content').css({ height: ($('#side').height() + 20) + 'px' });
		}
*/
		if ($.browser.msie && ($.browser.version <= 6))
		{
			$('div.box').each(function(){
				var h = $(this).height();
				h -= $('> div.top', this).height();
				h -= $('> div.bot', this).height();
				$('> div.mid', this).css({ height: h + 'px' });
			});
		}

		if ($.browser.msie) {
			var s = $('#side');
			s.css({ position: 'absolute', left: '0', top: '0' });
		}
	}
};

$(document).ready(api.init);

})();
