function banner() {
	var left;
	if (document.getElementById) {
		left = 600;
	} else {
		left = 0;
	}
	document.write("<center><div style=\"margin: 0px auto; width: 600px; height: 64px; position: relative; background: url(http://www.storageking.com.au/style/banner.gif); overflow: hidden;\"><div style=\"position: absolute; height: 64px; line-height: 64px; top: 0px; left: "+left+"px; white-space: nowrap; color: #000099; font-size: 18px; font-family: verdana,helvetica,sans-serif\" id=\"scrollcontent\">Ask about Our Move-In Specials!!!</div></div></center>");
	setTimeout(function() {
		if (document.getElementById) {
			var content = document.getElementById('scrollcontent');
			var width = 0;
			setInterval(function() {
				if (width == 0) {
					width = 0 - content.offsetWidth;
				}
				left -= 3;
				if (left < width) {
					left = 600;
				}
				content.style.left = left + 'px';
			}, 50);
		}
	}, 500);
}
banner();
