﻿function ieFooterFix(){
	if($('.wrapper').outerHeight()>getClientHeight()){
		$('#footer').css('position','relative');
	}else{
		$('#footer').css('position','absolute');
	}
}
function getClientHeight(){
	return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
}
if (document.all && !window.opera) attachEvent("onload", ieFooterFix);
if (document.all && !window.opera) attachEvent("onresize", ieFooterFix);
