<!--
var CON = Math.round(Math.random()*100);
var NUM = 30;
var NW = 1, NH = 1;
if(CON%2==0)
{
	NW = NUM*1.5;
	NH = 1;
	NUM = NW;
}
else
{
	NW = 1;
	NH = NUM;
	NUM = NH;
}
for(i=1;i<=NUM;i++) {document.write("<div id=i"+i+" class=intro align=center></div>");}

var speed = 50;
var temp = new Array();
var temp2 = new Array();

if (document.layers)
{
	for (i=1;i<=NUM;i++)
	{
		temp[i] = eval("document.i"+i+".clip");
		temp2[i] = eval("document.i"+i);		
		temp[i].width = window.innerWidth/NW;
		temp[i].height = window.innerHeight/NH;
		temp2[i].top = (i-1)*temp[i].height;
	}
}
else if (document.all)
{
	var clipright = document.body.clientWidth,clipleft = 0;
	var clipbottom=document.body.offsetHeight,cliptop=0;
	for (i=1;i<=NUM;i++)
	{
		temp[i]=eval("document.all.i"+i+".style");		
		temp[i].width=document.body.clientWidth/NW;		
		temp[i].height=document.body.offsetHeight/NH;
		if(NW==1) temp[i].top=(i-1)*parseInt(temp[i].height);
		if(NH==1) temp[i].left=(i-1)*parseInt(temp[i].width);
	}
}	
gogo();
-->