// JavaScript Document
window.custom_Link_Status = 0;

function FlashLink(targetLink){
	window.targetHref = targetLink;
	theLink = document.getElementById(window.targetHref)
	
	switch(window.custom_Link_Status){
		case 0:
			theLink.style.color = "red";
	  		window.custom_Link_Status = 1;
		break;
		
		case 1:
			theLink.style.color = "gold";
	  		window.custom_Link_Status = 2;
		break;
		
		case 2:
			theLink.style.color = "blue";
	  		window.custom_Link_Status = 0;
		break;
		
		default:
		alert("Welcome to Chezanne.com.au");
		break;
	}
 
  setTimeout("FlashLink('"+window.targetHref+"')",200);
}
