var brandcont;
var brands1;
var brands2;
var mYPos1 = 0;
var mYPos2 = 0;
var mHeight

function mInitScroll() {
	brandcont = document.getElementById("brandcont");
	brands1 = document.getElementById("brands");
	brands2 = brands1.cloneNode(true);
	if( !!document.all ) brands2.innerHTML = brands1.innerHTML;
	brands2.setAttribute('id','brands2');
	brandcont.appendChild(brands2);
	mHeight = brands1.offsetHeight;
	mYPos1 = 0;
	mYPos2 = mHeight;
	window.setInterval("mMove()", 50);
}

function mMove() {
	mYPos1 -= 1;
	mYPos2 -= 1;
	if (brands1.offsetTop < 0 - mHeight) { mYPos1 = brands2.offsetTop + mHeight; }
	if (brands2.offsetTop < 0 - mHeight) { mYPos2 = brands1.offsetTop + mHeight; }
	brands1.style.top = mYPos1 + "px";
	brands2.style.top = mYPos2 + "px";
}

