var thisUrl = window.location.href;
document.write('<ul id="leftMenu">' +
'<li>' +
'<a href="/tournaments/quick-games.html" class="section">+ Tournaments</a>' +
	'<ul class="subMenu section">' +
		'<li>' +
			'<a href="/tournaments/quick-games.html" class="'); 
			if(strstr(thisUrl,'/tournaments/quick-games.html'))
				document.write('current');
			else
				document.write('link');
			document.write('">+ Quick Games</a>' +
			  '<ul class="subMenu ');
					if(strstr(thisUrl,'/tournaments/quick-games.html')
					||strstr(thisUrl,'/tournaments/quick-games-rules.html'))
						document.write('section');
					else
						document.write('link');
					document.write('">' +
						'<li><a href="/tournaments/quick-games-rules.html" class="');
						if(strstr(thisUrl,'/tournaments/quick-games-rules.html'))
							document.write('current');
						else
							document.write('link');
						document.write('">- Quick Games Rules</a>' +
						'</li>' +						
				'</ul>' +
		'</li>' +
		
		'<li>' +
			'<a href="/tournaments/single-table-tourney.html" class="'); 
			if(strstr(thisUrl,'/tournaments/single-table-tourney.html'))
				document.write('current');
			else
				document.write('link');
			document.write('">+ Single Table Tourney</a>' +
			  '<ul class="subMenu ');
					if(strstr(thisUrl,'/tournaments/single-table-tourney.html')
					||strstr(thisUrl,'/tournaments/single-table-tourney-rules.html'))
						document.write('section');
					else
						document.write('link');
					document.write('">' +
						'<li><a href="/tournaments/single-table-tourney-rules.html" class="');
						if(strstr(thisUrl,'/tournaments/single-table-tourney-rules.html'))
							document.write('current');
						else
							document.write('link');
						document.write('">- Single Table Tourney Rules</a>' +
						'</li>' +						
				'</ul>' +
		'</li>' +
		
		'<li>' +
			'<a href="/tournaments/multi-table-tourney.html" class="'); 
			if(strstr(thisUrl,'/tournaments/multi-table-tourney.html'))
				document.write('current');
			else
				document.write('link');
			document.write('">+ Multi Table Tourney</a>' +
			  '<ul class="subMenu ');
					if(strstr(thisUrl,'/tournaments/multi-table-tourney.html')
					|| strstr(thisUrl,'/tournaments/multi-table-tourney-rules.html'))
						document.write('section');
					else
						document.write('link');
					document.write('">' +
						'<li><a href="/tournaments/multi-table-tourney-rules.html" class="');
						if(strstr(thisUrl,'/tournaments/multi-table-tourney-rules.html'))
							document.write('current');
						else
							document.write('link');
						document.write('">- Multi Table Tourney Rules</a>' +
						'</li>' +						
				'</ul>' +
		'</li>' +
		'<li>' +
			'<a href="/tournaments/tourney-formats.html" class="'); 
			if(strstr(thisUrl,'/tournaments/tourney-formats.html'))
				document.write('current');
			else
				document.write('link');
			document.write('">- Tourney Formats</a>' +
		'</li>' +		
	'</ul>' +
'</li>' +
'</ul>');

document.write('<div id="floatingDownload">' +
	'<a href="/download/" onclick="startDownload();" id="download"><img src="/images/download.gif" alt="Download Now" /></a>' +
'</div>');
JSFX_FloatDiv("floatingDownload", 0,10).floatIt();