<!--
function random_content()
{
	page = new Array();	
	page[1]="BuddyIcon.html";
	page[2]="flare.html";
	page[3]="bondage.html";
	page[4]="IslandSunset.html";
	page[5]="GreenHills.html";
	page[6]="MarsBay.html";
	page[7]="BeStill.html";
	page[8]="MarsBeach.html";
	page[9]="NightBeachWithMoon.html";
	page[10]="BeachSunset2.html";
	page[11]="BeachDawn.html";
	page[12]="BeachLowMist.html";
	page[13]="RedBeachSunset.html";
	page[14]="FluffyBeachSunset.html";
	
	mycontent = new Array();
	mycontent[1]="BuddyIcon.gif";
	mycontent[2]="flare.jpg";
	mycontent[3]="bondage.jpg";
	mycontent[4]="IslandSunset.jpg";
	mycontent[5]="GreenHills.jpg";
	mycontent[6]="MarsBay.jpg";
	mycontent[7]="BeStill.jpg";
	mycontent[8]="MarsBeach.jpg";
	mycontent[9]="NightBeachWithMoon.jpg";
	mycontent[10]="BeachSunset2.jpg";
	mycontent[11]="BeachDawn.jpg";
	mycontent[12]="BeachLowMist.jpg";
	mycontent[13]="RedBeachSunset.jpg";
	mycontent[14]="FluffyBeachSunset.jpg";
	
	var ry=Math.floor(Math.random()*mycontent.length);
	if (ry==0)
		ry=1;
	if (ry==3)
	{
		document.write('<p align=center><a href=mycreations/' + page[ry] + '><img border=0 src=mycreations/' + mycontent[ry] + ' alt=\"Random item from the \'My Creations\' gallery\"></a></p>');
	}
	else
	{
		document.write('<p align=center><a href=mycreations/' + page[ry] + '><img border=1 src=mycreations/' + mycontent[ry] + ' alt=\"Random item from the \'My Creations\' gallery\"></a></p>');
	}
}
random_content();
//-->