/* menu_buttons.js */

theStructure=new Array();
theStructure[0]="../images/top-banner.png";
theStructure[1]="../images/vbar.png";

mHome=new Array();
mHome[0]="../images/home_off.png";
mHome[1]="../images/home_on.png";

mNews=new Array();
mNews[0]="../images/news_off.png";
mNews[1]="../images/news_on.png";

mAbout=new Array();
mAbout[0]="../images/about_off.png";
mAbout[1]="../images/about_on.png";

mGalleries=new Array();
mGalleries[0]="../images/galleries_off.png";
mGalleries[1]="../images/galleries_on.png";

mPrints=new Array();
mPrints[0]="../images/prints_off.png";
mPrints[1]="../images/prints_on.png";

mContact=new Array();
mContact[0]="../images/contact_off.png";
mContact[1]="../images/contact_on.png";

mWallpapers=new Array();
mWallpapers[0]="../images/wallpapers_off.png";
mWallpapers[1]="../images/wallpapers_on.png";

mTribute=new Array();
mTribute[0]="../images/tribute_off.png";
mTribute[1]="../images/tribute_on.png";

mLinks=new Array();
mLinks[0]="../images/links_off.png";
mLinks[1]="../images/links_on.png";

function home_over()
  {document.home.src=mHome[1];}
function home_out()
  {document.home.src=mHome[0];}

function news_over()
  {document.news.src=mNews[1];}
function news_out()
  {document.news.src=mNews[0];}

function about_over()
  {document.about.src=mAbout[1];}
function about_out()
  {document.about.src=mAbout[0];}

function galleries_over()
  {document.galleries.src=mGalleries[1];}
function galleries_out()
  {document.galleries.src=mGalleries[0];}

function prints_over()
  {document.prints.src=mPrints[1];}
function prints_out()
  {document.prints.src=mPrints[0];}

function contact_over()
  {document.contact.src=mContact[1];}
function contact_out()
  {document.contact.src=mContact[0];}

function wallpapers_over()
  {document.wallpapers.src=mWallpapers[1];}
function wallpapers_out()
  {document.wallpapers.src=mWallpapers[0];}

function tribute_over()
  {document.tribute.src=mTribute[1];}
function tribute_out()
  {document.tribute.src=mTribute[0];}

function links_over()
  {document.links.src=mLinks[1];}
function links_out()
  {document.links.src=mLinks[0];}


