//--------------------------------------------------------------------------------------------------//
                                  //DO NOT EDIT BELOW THIS LINE//
//--------------------------------------------------------------------------------------------------//
var firsttable = dynamic(LINKS1 , TEXT1);
var secondtable = dynamic(LINKS2 , TEXT2);
var thirdtable = dynamic(LINKS3 , TEXT3);
var fourthtable = dynamic(LINKS4 , TEXT4);
var fifthtable = dynamic(LINKS5 , TEXT5);
var sixthtable = dynamic(LINKS6 , TEXT6);
var seventhtable = dynamic(LINKS7 , TEXT7);
var eighthtable = dynamic(LINKS8 , TEXT8);
var ninthtable = dynamic(LINKS9 , TEXT9);
//------------------------------------------------------------------------------------------//
var content=new Array()
//change the array below to the text associated with your links Expand or contract the array, depending on how many links you have



content[1]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + firsttable + '</tr></table>';


content[2]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + secondtable + '</tr></table>';


content[3]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + thirdtable + '</tr></table>';


content[4]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + fourthtable + '</tr></table>';

content[5]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + fifthtable + '</tr></table>';

content[6]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + sixthtable + '</tr></table>';

content[7]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + seventhtable + '</tr></table>';

content[8]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + eighthtable + '</tr></table>';

content[9]='<table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" bgcolor=' + backgroundcolor + ' height="24"><tr>' + ninthtable + '</tr></table>';

//--------------------------------------------------------------------------------------------------//
                     //STYLESHEET TO BE WRITTEN FOR SWITCHAROO//
//--------------------------------------------------------------------------------------------------//


if (navigator.userAgent.indexOf('Mac') != -1)
	{
	textsize += 2;
	}
	
		textStyle = '<style type="text/css">';
		textStyle += '.subnav {';
		textStyle += 'font-family: ' + textfont + ';';
		textStyle += 'font-size:' + textsize + ';';
		
		if (textbold == true)	
				{
				textStyle += 'font-weight:bold;';
				}
		else 
				{
				textStyle += 'font-weight:400;';
				}
				
		textStyle += 'color:' + textcolor + ';';
		if (textunderline == true)	
				{
				textStyle += 'text-decoration: underline;';
				}
		else
				{
				textStyle += 'text-decoration: none;';
				}
		textStyle += '}';
		textStyle += '</style>';
		document.write(textStyle);
	