<!--
//declare an array
function initArray()
{	this.length = initArray.arguments.length;
	for (var i = 0; i < this.length; i++)
	{ this[i] = initArray.arguments[i];
	}
}
//position of flash image
//var left1 =    new initArray(30,30,140,220,350,500); 
var left1 =    new initArray(30,30,350,140,220); 
var bottom1  = new initArray(0,0,0,0,0); 

var  x  =  0; //array parameter
//function to diaplay image at different x,y position
function imgDisplay()
{	if (window.ActiveXObject)// For IE
    {   xx= curLeft(document.getElementById('divBase'));
	    yy= document.getElementById('divBase').offsetTop;
	}
	else // for firefox
	{  //xx= document.getElementById('divBase').offsetLeft+73;
	   xx= curLeft(document.getElementById('divBase'))+20;
	   yy= document.getElementById('divBase').offsetTop+20;
	}
	
	xleft=xx;
	ytop=yy-10; //+bottom1[x];
	(x < left1.length-1) ? x++ : x = 0;
	
	document.getElementById("startd").style.left= xleft+'px';
	document.getElementById("startd").style.paddingLeft= left1[x]+'px';
	document.getElementById("startd").style.top =ytop+'px';
}
//call function imgdisplay in an interval of 1000
setInterval("imgDisplay()",1000);
//-->