$(document).ready(function(){	
	if (jQuery.browser.safari) {
		var contentHeight = $('#content').height()+233;
		var windowHeight = $(window).height()-203;

		if (windowHeight > contentHeight) {
			var height = windowHeight;
		} else {
			var height = contentHeight;
		}
	} else {
		var height = $(document).height()-203;
	}

	$('#page .container').css('height', height);
	$('.yellow div').css('height', height);

});

