
var subChannel = new Array();
subChannel[1] = new channel('Tours','tours.html',501);
subChannel[2] = new channel('Classic Tour','tours-classic.html',502);
subChannel[3] = new channel('Big Tour','tours-big.html',503);
subChannel[4] = new channel('Epic Tour','tours-epic.html',504);
subChannel[5] = new channel('Ultimate Tour','tours-ultimate.html',505);
subChannel[6] = new channel('Deluxe Tour','tours-deluxe.html',506);
subChannel[7] = new channel('Tour Downloads','tours-download.html',507);


bcsc_menuName = ""
bcsc_URL = ""

// display photos
function displayphotostre(pic,text)
{
var pic
var text
document.write('<table bgcolor="#ffffff" cellspacing="1" cellpadding="1" border="0">');
document.write('<tr>');
document.write('	<td align="center">');
document.write('<table align="center" bgcolor="#66cc99" cellspacing="1" cellpadding="1" border="0">');
document.write('<tr>');
document.write('	<td align="center"><img src="' + pic + '.jpg" alt="' + text + '" border="0"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('	<td align="center"><p>' + text + '</p></td>');
document.write('</tr>');
document.write('</table>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
}