//v1.1
//Copyright 2006 Adobe Systems, Inc. All rights reserved.



function DateChecker(month)
{

	var m_names = new Array("January", "February", "March", 
		"April", "May", "June", "July", "August", "September", 
		"October", "November", "December");
		

	var d = new Date();
	var curr_date = d.getDate();
	var curr_month = d.getMonth();
	var curr_year = d.getFullYear();
	
	var mm = m_names[curr_month]
	
	if(month==mm) {
	document.write('</tr>');
	document.write('</td>');
	document.write('</table>');  
 	document.write('</td>');
	document.write('<td width="30" valign="top" align="left">');
	document.write('</td>');
	document.write('<td width="300" valign="top" align="left" background="images/body(rt300-bev)-long.jpg">');	
	document.write('<table align="center" width="280" border="0" cellpadding="0" cellspacing="0">');
	document.write('<tr>');
	document.write('<td>');
	document.write('<b>');
	document.write('<p  style="font-family: Arial, Helvetica, sans-serif; font-size: large; font-color: 000000">');
	document.write('Coming Soon<img src="images/ruleline.gif" height="1" width="100%" border="0"></p>');
	}
}

function AppearanceMenu()
{
	document.write('<p  style="font-family: Arial, Helvetica, sans-serif; font-size: medium; font-color:000000"><b>')
	document.write('<a href="appearances.htm">2012</a> - ')
	document.write('<a href="appearances-2011.htm">2010</a> - ')
	document.write('<a href="appearances-2010.htm">2010</a> - ')
	document.write('<a href="appearances-2009.htm">2009</a> - ')
	document.write('<a href="appearances-2008.htm">2008</a> - ')
	document.write('<a href="appearances-2007.htm">2007</a> - ')
	document.write('<a href="appearances-2006.htm">2006</a> - ')
	document.write('<a href="appearances-2005.htm">2005</a> - ')
	document.write('<a href="appearances-older.htm">Older Years</a></b></p>')
}	
	


