// JavaScript Document
function banPos() {
	if (document.getElementById('fcont')) {
		var flashcont = document.getElementById('fcont');
		var thebanner = document.getElementById('banner');
		var banOffset = parseInt((382 - flashcont.offsetWidth)/2);
		//alert(flashcont.firstChild);
		thebanner.style.marginLeft = -banOffset + 'px'
	}
}
window.onresize  = function () {
	banPos();
}