if(IEvers > 6 || IEvers == -1) {
	(function($){  
		$.fn.positionFooter = function(center){  
			var element = this; 
			var originalPosition = $(element).offset();
			var originalTopPosition = originalPosition.top; 
			positionTheFooter();  
			$(window).bind("resize", function(){  
			    positionTheFooter();
			});
			function positionTheFooter(){ 
				var footerHeight = 100;
				var headerHeight = 175;
				var windowHeight = $(window).height();
				var contentHeight = $("#content").height();
				if(contentHeight + footerHeight + headerHeight < windowHeight) {
					$("#footer").css({  
						"top" : (windowHeight - footerHeight)
					});
				} else {
					$("#footer").css({  
						"top" : (contentHeight + headerHeight)
					});
				}
			};
		};  
	})(jQuery); 
}