<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var flashcolor		= "086090"		// FLASH BACKGROUND COLOR
var color		= "086090"		// HEADER BACKGROUND COLOR
var flashheight		= "80"			// HEIGHT OF THE FLASH (IN PIXELS)
var flashwidth		= "750"			// WIDTH OF THE FLASH (IN PIXELS)




// COPYRIGHT 2008 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// START FLASH HEADER









document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="750" BGCOLOR="#'+color+'"><tr><td align="left" BGCOLOR="#'+color+'" background="background.jpg">');
document.write('<center><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="750" Height ="80">');
document.write('<param name=movie value="Movie1.swf"><param name=quality value=high><PARAM NAME=menu VALUE=false><embed src="Movie1.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="750" Height ="80"></embed></object></center>');
document.write('</td></tr></table>');





// CODE FOR THE DATE DISPLAY




function date1( ){
m= new Array(12);
m[0]="January";m[1]="February";m[2]="March";m[3]="April";m[4]="May";m[5]="June";
m[6]="July";m[7]="August";m[8]="September";m[9]="October";m[10]="November";m[11]="December";
now = new Date( );
month=now.getMonth( );
day=now.getDate( );
switch (day){
case 1:
sup="st";
break;
case 21:
sup="st";
break;
case 31:
sup="st";
break;
case 2:
sup="nd";
break;
case 22:
sup="nd";
break;
case 3:
sup="rd";
break;
case 23:
sup="rd";
break;
default:
sup="th";
}
year=now.getFullYear( );
document.write("<FONT SIZE=2 COLOR='#61FFFF'><DIV ALIGN='LEFT'>"+m[month]+" " +day+"<SUP>"+sup+"</SUP>"+" "+year+"</DIV></FONT>");
}




//  End -->