// JavaScript Document 
document.write('<table border="0" cellspacing="0" cellpadding="0">');

// BEGIN HOME ITEM
document.write('<tr>');
if(title=="home"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="index.htm">Home</a></div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="index.htm">Home</a></div></td>');
   }   
document.write(' </tr>');
//END HOME ITEM

// BEGIN MENU ITEM
document.write('<tr>');
if(title=="menu"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="menu.htm">Menu</a></div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="menu.htm">Menu</a></div></td>');
   }   
document.write(' </tr>');
//END MENU ITEM

// BEGIN PHOTOS ITEM
document.write('<tr>');
if(title=="photos"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="photos.htm">Photos</a></div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="photos.htm">Photos</a></div></td>');
   }   
document.write(' </tr>');
//END PHOTOS ITEM

// BEGIN SCHEDULE ITEM
document.write('<tr>');
if(title=="schedule"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="schedule.htm">Schedule</a></div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="schedule.htm">Schedule</a></div></td>');
   }   
document.write(' </tr>');
//END SCHEDULE ITEM

// BEGIN DIRECTIONS ITEM
document.write('<tr>');
if(title=="directions"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="directions.htm">Directions</a></div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="directions.htm">Directions</a></div></td>');
   }   
document.write(' </tr>');
//END DIRECTIONS ITEM

// BEGIN MEDIA ITEM
document.write('<tr>');
if(title=="media"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="media.htm">Media</a></div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="media.htm">Media</a></div></td>');
   }   
document.write(' </tr>');
//END MEDIA ITEM

// BEGIN SPONSORSHIP ITEM
document.write('<tr>');
if(title=="sponsorship"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="sponsorship.htm">Sponsorship</a></div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="sponsorship.htm">Sponsorship</a></div></td>');
   }   
document.write(' </tr>');
//END SPONSORSHIP ITEM

// BEGIN FLYER ITEM
document.write('<tr>');
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="gfx/Flyer-2010.pdf" target="_blank">Flyer</a></div></td>');  
document.write(' </tr>');
//END Flyer ITEM


// BEGIN ST. NICK ITEM
document.write('<tr>');
if(title=="none"){
document.write('<td width="10"><img src="gfx/box_orange.gif"></td>');
document.write('<td width="100"><div class="menu_item_on"><a href="http://www.stnicholasnorthridge.org/">St. Nicholas Church</div></td>');
   }
 else{
document.write('<td width="10"><img src="gfx/box_white.gif"></td>');
document.write('<td width="100"><div class="menu_item_off"><a href="http://www.stnicholasnorthridge.org/">St. Nicholas Church</div></td>');
   }   
document.write(' </tr>');
//END ST. NICK ITEM

document.write('</table>');


