function randomDrzazaFunLinks() {
	var funLinks = new Array(
		'',
		'<a href="http://www.coolsiteoftheday.com" target="_blank" title="Link to new window or tab">Cool site of the day</a>',
 		'<a href="http://www.400monkeys.com/God/" target="_blank" title="Link to new window or tab">Does God exist?</a>',
 		'<a href="http://www.theonion.com/" target="_blank" title="Link to new window or tab">The Onion</a>',
		'<a href="http://www.aardman.com/" target="_blank" title="Link to new window or tab">Aardman Animations</a>',
		'<a href="http://www.w3schools.com/downloadwww.htm" target="_blank" title="Link to new window or tab">Download the internet</a>',
		'<a href="http://www.mini.co.uk/" target="_blank" title="Link to new window or tab">Mini</a>',
		'<a href="http://www.yuni.com/library/latin.html" target="_blank" title="Link to new window or tab">Latin phrases</a>',
		'<a href="http://www.wordsmith.org/anagram/" target="_blank" title="Link to new window or tab">Anagram creator</a>',
		'<a href="http://www.coolsiteoftheday.com/randomcool.html" target="_blank" title="Link to new window or tab">Random cool</a>',
		'<a href="http://www.banksy.co.uk" target="_blank" title="Link to new window or tab">banksy</a>',
		'<a href="http://www.270towin.com/" target="_blank" title="Link to new window or tab">270 to win</a>',
		'<a href="http://www.stevecarter.com/albumcovers.htm" target="_blank" title="Link to new window or tab">Worst album covers</a>',
		'<a href="http://www.herecomesbod.com" target="_blank" title="Link to new window or tab">Here comes Bod</a>',
		'<a href="http://www.miniclip.com/games/one-man-band/en/" target="_blank" title="Link to new window or tab">One man band</a>'
	);
	var indices = new Array(0,0,0,0,0)
	var index = i = j = 0;
	for (i=0; i<5; i++) {
		while (indices[i] == 0 || indices[i] == funLinks.length)
		{ // proper random number generator
			indices[i] = Math.round(Math.random() * (funLinks.length));
			index=indices[i];
			for (j=0; j<indices.length; j++) {
				if ((indices[j]==indices[i]) && !(i==j)) {
					indices[i]=0;
				}
			}
		}
	}
	for (i=0; i<5; i++) {
		document.write('<img src="images/li.gif" alt="link arrow" /> '+funLinks[indices[i]]+'<br />\n');
	}
}

function randomDrzazaTechLinks() {
	var techLinks = new Array(
		'',
 		'<a href="http://www.cssheaven.com/" target="_blank" title="Link to new window or tab">CSS Heaven</a>',
		'<a href="http://www.housepricecrash.co.uk/" target="_blank" title="Link to new window or tab">House price crash</a>',
		'<a href="http://world.altavista.com/" target="_blank" title="Link to new window or tab">Babel Fish</a>',
		'<a href="http://www.walkjogrun.net/" target="_blank" title="Link to new window or tab">Walk Jog Run</a>',
		'<a href="http://wwp.greenwichmeantime.com/" target="_blank" title="Link to new window or tab">Greenwich Mean Time</a>',
		'<a href="http://www.forex.ch/converter.htm" target="_blank" title="Link to new window or tab">Currency convertor</a>',
		'<a href="http://del.icio.us" target="_blank" title="Link to new window or tab">del.icio.us</a>',
		'<a href="http://www.nomorebeta.com" target="_blank" title="Link to new window or tab">no more beta!</a>',
		'<a href="http://www.widget-foundry.com" target="_blank" title="Link to new window or tab">Widget Foundry</a>',
		'<a href="http://validator.w3.org/" target="_blank" title="Link to new window or tab">Website validator</a>',
		'<a href="http://jigsaw.w3.org/css-validator/" target="_blank" title="Link to new window or tab">CSS validator</a>',
		'<a href="http://www.csszengarden.com/" target="_blank" title="Link to new window or tab">CSS Zen Garden</a>'
	);
	var indices = new Array(0,0,0,0,0)
	var index = i = j = 0;
	for (i=0; i<5; i++) {
		while (indices[i] == 0 || indices[i] == techLinks.length)
		{ // proper random number generator
			indices[i] = Math.round(Math.random() * (techLinks.length));
			index=indices[i];
			for (j=0; j<indices.length; j++) {
				if ((indices[j]==indices[i]) && !(i==j)) {
					indices[i]=0;
				}
			}
		}
	}
	for (i=0; i<5; i++) {
		document.write('<img src="images/li.gif" alt="link arrow" /> '+techLinks[indices[i]]+'<br />\n');
	}
}