<!-- cloak
function makeArray1(n) {
	this.length = n;

	for (var i = 0; i<= n; i++) {
		this[i] = 0
	}	
	return this
}

function linkage(title,address,name) {
	
	
	this.title = title;
	return this
}

function RanNumage() {
	today = new Date();
	num = Math.floor(Math.abs(Math.sin(today.getSeconds()) * 1000 % 3));
	return (num);
}


function homeimage() {

	n= RanNumage();


	var db = new makeArray1() 
	db[0] = new linkage("../images/toronto_pic_home1.jpg")
	db[1] = new linkage("../images/toronto_pic_home2.jpg")
	db[2] = new linkage("../images/toronto_pic_home3.jpg")
	

	document.write("<img src='" + db[n].title + "' border=0>")
	
}

function hometext() {
	
	document.write("<font color=black face=tahoma size=2>The city that never rests obviously offers visitors an unforgettable experience and an abundance of things to do. Never will one be bored or left with nothing to do while in the city of Toronto. Lots to do and tons of fun!")
	document.write("<BR><BR><b>FREE Toronto Newsletters</b><BR><a href=../newsletters/newsletters_toronto.htm><font color=blue><b>Upcoming Events</b></a><font color=black>&nbsp;|&nbsp;<a href=../newsletters/newsletters_toronto.htm><font color=blue><b>Live Bands</b> </a><font color=black>&nbsp;|&nbsp;<a href=../newsletters/newsletters_toronto.htm><font color=blue><b>Family Fun</b> </a><BR><a href=../newsletters/newsletters_toronto.htm><font color=blue><b>Restaurants & Nightlife</b> </a><font color=black>&nbsp;|&nbsp;<a href=../newsletters/newsletters_toronto.htm><font color=blue><b>Sales</b> </a><font color=black>&nbsp;|&nbsp;<a href=../newsletters/newsletters_toronto.htm><font color=blue><b>Sports</b></a>")
}


// -- decloak -->
