//header stuff


init();

function startcom() {document.write("<"+"!--")};

function info() {

document.write('<p align="center">' + today + '</p>');


if ((navigator.plugins && navigator.plugins['Shockwave Flash']) || //if NS, or
      (navigator.appName.indexOf('Microsoft') != -1 &&
       navigator.appVersion.indexOf('Mac') == -1 &&
       navigator.appVersion.indexOf('3.1') == -1)) {
document.write('<p align="center"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#3,0,0,0" width="300" height="200"><param name="SRC" value="intro1.swf"><param name="BGCOLOR" value="#000000"><embed src="intro1.swf" pluginspage="http://www.macromedia.com/shockwave/download/" type="application/x-shockwave-flash" width="300" height="200" bgcolor="#000000"></embed> </object> </p>');
  } else {
document.write('<h2 align="center"><font color="#CCFF66">To display this page properly you need browser needs to be able to display Shockwave Flash!</font></h2><p align="center"><font color="#99FFFF"> Try Internet Exporer version 4 or higher<br></font><font color="#99FFFF">- or -<br>get the Shockwaves Plugin for Netscape Navigator version 4 or higher.</font></p>')
}


document.write('<p align="center"><a href="toby.html">Click here to reach my home page</a></p>');

document.write('<p>Welcome to my little bit of cyberspace. Please remove your shoes before entering.</p>')




};

function autoex() {}


function init(){

now=new Date();
days=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saterday");
months=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
post="th";
if (now.getDate()%10==1){post="st"};
if (now.getDate()%10==2){post="nd"};
if (now.getDate()%10==3){post="rd"};

today= days[now.getDay()] + " " + now.getDate() + post + " " + months[now.getMonth()] +" " + now.getFullYear();




}