function checkwidth() {
	if (screen.width<1030)
	{
		changeIt();
	}
}

function changeIt() {
	if (!document.styleSheets) return;
	var theRules = new Array();
	if (document.styleSheets[0].cssRules)
	{
	theRules = document.styleSheets[0].cssRules;
	}
	else if (document.styleSheets[0].rules)
	{
	theRules = document.styleSheets[0].rules;
	}
/* number 2= table_01 in css number 41 = left border div etc. */
	theRules[2].style.left = '0px';
	theRules[40].style.marginLeft = '-320px';
	theRules[41].style.marginLeft = '-320px';
}

