//------------------------------------------------------[TG]
// Site: JS
//------------------------------------------------------[TG]

// Fix Footer ------------------------------------------[TG]
var LoadHeight = false;

window.onload = function() {
	LoadHeight = document.body.clientHeight;
	FixFooter();
}

function FixFooter() {
	var InnerHeight = (document.documentElement.clientHeight) ? document.documentElement.clientHeight : (window.innerHeight) ? window.innerHeight : false;

	/*
	if (InnerHeight > LoadHeight) {
		if (document.documentElement.clientHeight) {
			$('.Content')[0].style.height = (document.documentElement.clientHeight - 178) + 'px';
		} else if (window.innerHeight){
			$('.Content')[0].style.height = (window.innerHeight - 178) + 'px';
		}
	}
	*/

}
window.onresize = FixFooter;
//------------------------------------------------------[TG]