
var paragraph_1 	= "yes"		//specials
var paragraph_2 	= "no"		//announcement
var showimage		= "no"		//logo spacer (goes between paras)
var spacing			= "20"		
var bordercolor		= "ffffff"	// scroll bar / border colour (image)

var showdate		= "yes"		// date script
var dateLR			= "left"	// left / right
var dateX			= "475"		// from left
var dateY			= "25"		// from top


var showsflash		= "yes"		// sidebar flash images (lives at the top of the menu)
var flashcolor		= "000000"	// background
var flashwidth		= "200"		// width
var flashheight		= "64"		// height



// spacer.gif (clear)
//document.write('<img src="images/spacer.gif" height="'+spacing+'" width="10"><br>')



// flash- maybe for sponsor logos here? or cool photos? 200x65 px
   if (showsflash == "yes") {

  

document.write('<span class="sidebartext">')



document.write('<TABLE cellpadding="0" cellspacing="0" border="0" bordercolor="#'+bordercolor+'" style="border-collapse:collapse"><tr><td valign="top">')
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="imagechanger" ALIGN="">')
document.write('<PARAM NAME=movie VALUE="imagechanger.swf">')
document.write('<PARAM NAME=quality VALUE=high>')
document.write('<PARAM NAME=bgcolor VALUE=#'+flashcolor+'>')
document.write('<EMBED src="imagechanger.swf" quality=high bgcolor=#'+flashcolor+'  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="imagechanger" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">')
document.write('</EMBED>')
document.write('</OBJECT>')
document.write('</span></td></tr></table>')

}



// para 1 (specials)

   if (paragraph_1 == "yes") {
	   
document.write('<span class="title"><br><br>')

document.write('</span>')	 


}


// logo spacer pic

   if (showimage == "yes") {

document.write('<br><TABLE cellpadding="0" cellspacing="0" border="0" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')
document.write('<a href="index.html"><IMG SRC="IMAGE?" border="0" width="150"></a><br>')
document.write('</td></tr></table>')
document.write('<br><br>')
}




// para 2 (announcements)

   if (paragraph_2 == "yes") {



document.write('<span class="sidebartitle2">')
document.write('<br>Announcements:<br>')
document.write('</span>')
document.write('<span class="sidebartext">')
document.write('Welcome to the new ArniesSRO.com!<br>')
document.write('</span>')
}





// date scriptage- this is so cool and i don't know how it works!

   if (showdate == "yes") {
	  

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
 

}


