imagemax=11;
function nextimg(obj)
{
if (obj){
var img = parseInt(Math.random()*imagemax)+1;
obj.src="../frontlanding/coming-soon/"+img+".jpg";
}
}
t=setInterval('nextimg(document.getElementById("rotate"));',5000);