function slideStart()
{
	if($('contentRightLogotypyInner')) slideTimeInterval=setInterval("slideIt()", 4000);
}

function slideIt()
{
	var box = $('contentRightLogotypyInner');

	$(box).tween('opacity', 1, 0);

	var boxTop = parseInt(box.getStyle('top'));
	
	var boxItemsCount = parseInt($('contentRightLogotypyInner').getElements('a').length);
	
	var stepHeight = 50;
	var step=0;
	
	if(boxTop!=0) step = Math.abs(parseInt(boxTop/stepHeight));
	
	if(step+1>=boxItemsCount) step=-1;
	
	var x = new Chain();
	x.chain(function() {$(box).setStyle('top', -(step+1)*stepHeight + 'px');});
	x.chain(function() {$(box).tween('opacity', 0, 1);});
	
	x.callChain.delay(1000, x);
	x.callChain.delay(1000, x);
	
}
