function isIE6() {
	if (jQuery.browser.msie) {
	  if(parseInt(jQuery.browser.version) <= 6) {
		return true;
	  } else {
		return false;
	  }
	} 	
}

$(document).ready(function() {
	var ie6 = isIE6();
	var contentPos = $("#section_mid").position().top;
	var windowHeight = $(window).height();
	var adjustedH = windowHeight - contentPos - 50;	
	if(adjustedH > 500) {
		$("#section_mid").css('min-height',adjustedH);
		if(ie6==true) {
			$("#section_mid").css('height',adjustedH);
			$("#footer").css('bottom','0');
		}
	} else {
		if(ie6==true) {
			$("#section_mid").css('height','500px');
			$("#footer").css('bottom','0');
		}
	}
});
