var Shoshkele = 
{
	Timer : 0,
	
	ActivateShoshkele : function()
	{
		//Shoshkele.MoveShoshkele(ctrl);
		//alert(objCtrl.Top);
		setTimeout ("Shoshkele.StartShoshkele()", 4000);
	},
	
	StartShoshkele : function()
	{
		var objCtrl = document.getElementById('DivShoshkeleBanner');
		objCtrl.style.display = "block";
		this.Timer = setInterval ("Shoshkele.MoveShoshkele('DivShoshkeleBanner')", 20);
	},
	
	MoveShoshkele : function(ctrl)
	{
		var objCtrl = document.getElementById(ctrl);
		var x = objCtrl.style.top;
		var unit = x.replace(/\d/g,'');
		var xPosition = 0;
		x = x.replace(unit,'');
		xPosition = parseInt(x);
		if (xPosition < 300)
		{
			//alert(xPosition);
			xPosition = xPosition+8;
			objCtrl.style.top = xPosition + "px";
			//alert(xPosition);
			//alert(objCtrl.style.top);
		}
		else
		{
			//alert('end');
			clearInterval(this.Timer);
		}
	}
}
