function changeBannerSize(x){
	document.getElementById('flashban').style.width = String(x)+'px'
}

function opengame(gamename) {
	var w = 720;
	var h = 540;
	popup = window.open('/game.html?'+gamename,'nfu','directories=0,location=0,menubar=0,personalbar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,width='+String(w)+',height='+String(h)+',left='+String(Math.floor((screen.width-w)/2))+',top='+String(Math.floor((screen.height-h)/2)-22));
}

function CloseLayer() {
	document.getElementById('flashlayer').style.display = 'none';
}


jQuery(document).ready(function() {
	if (document.getElementById('Related') && document.getElementById('quickList')) {
		jQuery('Related').css({'margin-top': String(jQuery('quickList').offset().top - jQuery('Related').offset().top - 23)+'px'});
	}
});


