var thisUrl = window.location.href;
document.write('<ul id="leftMenu">' +
'<li>' +
'<a href="/cashier/deposit.html" class="section">+ Cashier</a>' +
	'<ul class="subMenu section">' +
		'<li>' +
			'<a href="/cashier/deposit.html" class="'); 
			if(strstr(thisUrl,'/cashier/deposit.html'))
				document.write('current');
			else
				document.write('link');
			document.write('">- Deposit</a>' +
		'</li>' +
		'<li>' +
			'<a href="/cashier/withdraw.html" class="');
			if(strstr(thisUrl,'/cashier/withdraw.html'))
				document.write('current');
			else
				document.write('link');
			document.write('">- Withdraw</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();