var specifyimage=new Array() 
var specifylink=new Array() 
var count =0;
var delay = 1000;

function movecube(){
	//document.getElementById('cube').src= specifyimage[count];
	//document.getElementById('linkcube').href= specifylink[count];
	//count++;
	//if (count==specifyimage.length) count=0;
	//setTimeout("movecube()",delay)
}
window.onload=new Function("setTimeout('movecube()',delay)")

