var myMenu;
window.onload = function() {
	myMenu = new SDMenu("my_menu");
	myMenu.init();
};

var RSSRequestObject = false; // XMLHttpRequest Object
var Backend = './src/eventrss.php'; // Backend url
window.setInterval("update_timer()", 1200000); // update the data every 20 mins

if (window.XMLHttpRequest) // try to create XMLHttpRequest
	RSSRequestObject = new XMLHttpRequest();

if (window.ActiveXObject)	// if ActiveXObject use the Microsoft.XMLHTTP
	RSSRequestObject = new ActiveXObject("Microsoft.XMLHTTP");

//start page data
function head()
{
document.write('<script type="text/javascript" src="./src/sdmenu.js"></script>');
document.write('<link rel="stylesheet" type="text/css" href="style.css">');
document.write('<link rel="shortcut icon" href="./img/favicon.ico" type="image/vnd.microsoft.icon">');
}
function sidemenu()
{	
document.write('	<div style="float: left" id="my_menu" class="sdmenu">');
document.write('	  <div>');
document.write('		<span>Home</span>');
document.write('		<a href="./index.html">English</a>');
document.write('		<a href="./esp/index.html">Espanol</a>');
document.write('	  </div>');
document.write('	  <div class="collapsed">');
document.write('		<span>About STSC</span>');
document.write('		<a href="./about.html">In a Nutshell</a>');
document.write('		<a href="./bylaws.html">Bylaws</a>');
document.write('		<a href="./modlaws.html">Modlaws</a>');
document.write('		<a href="./fees.html">Fees</a>');
document.write('		<a href="./fields.html">Fields</a>');
document.write('	  </div>');
document.write('	  <div class="collapsed">');
document.write('		<span>Registration</span>');
document.write('		<a href="./parents.html">Info for Parents</a>');
document.write('		<a href="./players.html">Info for Players</a>');
document.write('		<a href="http://stsoccer.bonzidev.com/sam/registration">Register Online</a>');
document.write('		<a href="./forms.html">Download Forms</a>');
document.write('	  </div>');
document.write('	  <div class="collapsed">');
document.write('		<span>Events</span>');
document.write('		<a href="./meetings.html">Meetings</a>');
document.write('		<a href="./calendar.html">Calendar</a>');
document.write('		<a href="./tournaments.html">Tournaments</a>');
document.write('		<a href="./minutes.html">Meeting Minutes</a>');
document.write('	  </div>');
document.write('	  <div class="collapsed">');
document.write('		<span>Teams</span>');
document.write('		<a href="./boys.html">Boys Teams</a>');
document.write('		<a href="./girls.html">Girls Teams</a>');
document.write('		<a href="./schedules.html">Game Schedules</a>');
document.write('	  </div>');
document.write('	  <div class="collapsed">');
document.write('		<span>Contact Us</span>');
document.write('		<a href="./board.html">Board Members</a>');
document.write('		<a href="./coaches.html">Coaches</a>');
document.write('		<a href="http://www.cheknnudol.com/stsc.html">Webmaster</a>');
document.write('	  </div>');
document.write('	  <div class="collapsed">');
document.write('		<span>Chat</span>');
document.write('	  <!-- Begin ShoutMix - http://www.shoutmix.com -->');
document.write('	  <a href="http://www6.shoutmix.com/?stsc">View shoutbox</a>');
document.write('	  <iframe title="stsc" src="http://www6.shoutmix.com/?stsc" width="140px" height="300px" frameborder="0" scrolling="auto">');
document.write('</iframe>');
document.write('<!-- End ShoutMix -->');
document.write('	  </div>');
document.write('	  <div class="collapsed">');
document.write('		<span>Links</span>');
document.write('		<a href="http://www.tpcjsa.com/">TPCJSA</a>');
document.write('		<a href="http://www.wsysad3.org/">WSYSA District 3</a>');
document.write('		<a href="http://www.fifa.com/">FIFA</a>');
document.write('	  </div>');
document.write('	</div>');
document.write('	<div id="sponsors">');
document.write('		Special thanks to our sponsors:<br/>');
document.write('		<a href="http://www.tekk.com/newsponsor.html">');
document.write('			<img src="./img/tekkgoals.gif" width="130px"></a>');
document.write('	</div>');
}

function copyright()
{
	document.write('253 472 5585&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;&nbsp;registrar@stsoccer.org&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;&nbsp;P.O. Box 111226 Tacoma, WA 98411-1226<br/>');
	document.write('&copy; 2005 South Tacoma Soccer Club. All Rights Reserved.');
}

//--------------------------------------------------------------------------------------------------------------
//blinkness

function doBlink() {
	var blink = document.all.tags("BLINK")
	for (var i=0; i<blink.length; i++)
		blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "" 
}

function startBlink() {
	if (document.all)
		setInterval("doBlink()",250)
}



