

	// <![CDATA[
	var hash = new Array();
	function throb(item) {
	
	  // If the hash array does not have an entry for this item, initialise it at 2
	  if (!hash[item]) hash[item] = 2;
	
	  // Send a fade command using the hash array to tell us what parameters we should use
	  fader[item].fade(Math.floor(hash[item] / 2), !(hash[item] % 2));
	
	  // Call this function again for this same item after a certain amount of time
	  setTimeout(function() { throb(item); }, (hash[item] % 2) ? 100 : 5000);
	
	  // If we have exceeded the number of messages in this fader, start over again at 2
	  if (++hash[item] > fader[item].msg.length * 2 - 1) hash[item] = 2;
	}
	
	var fader = new Array();
	
	fader[0] = new fadeObject('NewsflashText', 'bbbbbb', '000000', 30, 30);
	
fader[0].msg[0] = '<a href="http://www.brunyisland.com/accommodation/default.php">Last Minute Accomodation SPECIALS</a>';
fader[0].msg[1] = '<a href="http://www.brunyisland.com/accommodation/default.php">Last Minute Accomodation SPECIALS</a>';
fader[0].msg[2] = '<a href="http://www.brunyisland.com/aboutus.php">David, Rachel and Max talk about Living on Bruny Island</a>';
fader[0].msg[3] = '<a href="http://www.brunyisland.com/contactus.php">Ask Us Your Bruny Island Questions</a>';
fader[0].msg[4] = '<a href="http://www.tict.com.au/events/2008-tasmanian-tourism-awards">Explorers Cottages WINS at Tasmanian Tourism Awards</a>';
fader[0].msg[5] = '<a href="http://www.brunyisland.com/guestbook.php">Submit a review on our Guest Book</a>';
fader[0].msg[6] = '<a href="http://www.tict.com.au/events/2008-tasmanian-tourism-awards">Bruny Island Charters - WINNER - Tasmanian Tourism Awards</a>';

	// Start this fader
	setTimeout(function() { throb(0); }, 1000);
	// ]]>
