<!--
		function LOTD() { var links = new Array( "http://www.mcdonalds.co.uk/homepage/asp/return.asp|UK McDonalds Home Site",
"http://www.happytoy.co.uk|Neil, Ann & Karas - the UK HappyToy site",
"http://www.geocities.com/paula500||images/paulaccpink.gif|300|50",
"http://www.jaydeetoys.com||images/jdbn.gif",
"http://www.marjsmcdonaldstoys.homestead.com|Marj's McDonalds Toys Website|",
													 "http://www.mcdonalds.com/countries/usa/index.html|US McDonalds Home Site", 
													 "http://www.mcdonalds.co.uk/homepage/asp/return.asp|UK McDonalds Home Site" );
		

		var today = new Date();
		var day = today.getDate();
				
		idx = 0;
		if ( day <= links.length ) idx = day-1;
		else idx = day % (links.length-1);
		if ( idx < 0 || idx > links.length ) idx = links.length-1;
		
		link = links[ idx ].split( "|" );

		document.writeln( "<CENTER><FONT color=magenta>Link of the Day</FONT><br><a href='" + link[0] + "'>" );

		if ( link.length >= 3 && link[2].length > 5 ) {
			document.writeln( "<IMG SRC='" + link[2] + "' ALIGN='center' width='100' height='20'>" );
		} else
			document.writeln( link[1] );
		document.writeln( "</a></CENTER>" );
}
//-->
