//ticket items
items = new Array();
items[0] = "Introducing Osea Island - Some Things Are Best Kept Secret...";
items[1] = "Osea Island is the UK's leading retreat for the music industry: recording, mixing, writing and rehearsals";
items[2] = "Visit www.miloco.co.uk/oseaisland to find out everything you need to know on our brand new launch";
items[3] = "New Avid HD I/O interfaces in The Engine Room";
items[4] = "New Pro Tools HDX system in The Bridge";
items[5] = "New long-term let room available from March in Willesden";
items[6] = "Miloco Gift Vouchers - Give the gift of recording in world class studios";




//ticker script -Keep hands off :-)-

$n = 0;
function setTicker(id)
{
	document.getElementById('ticker').innerHTML = items[$n];
	$n ++;
	if($n == items.length)
	{
		$n = 0;
	}
}

setInterval('setTicker()', 4000);

