// resolution check on needed
	function init()
	{
		if (screen.width <= 800 && screen.height <= 600)
		{
			document.getElementById('main').style.marginTop = '0px';
			document.getElementById('main').style.top = '0px';
		}
	}
