function banner() {
	var left;
	if (document.getElementById) {
		left = 500;
	} else {
		left = 0;
	}
	document.write("<center><div style=\"margin: 0px auto; width: 500px; height: 64px; position: relative; background: url(/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\">Over 100 Convenient Secure Locations with Simple Storage Solutions - We Sell Boxes and Packaging - Free Quote Service - Bulk Storage - Competitive Rates - Flexible terms - Storage King is the largest Self Storage company in Australasia.</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 = 500;
				}
				content.style.left = left + 'px';
			}, 50);
		}
	}, 500);
}
banner();
