homeup = new Image;homeup.src = "images/nav/home1.png";homedown = new Image;homedown.src = "images/nav/home2.png"; 
aboutup = new Image;aboutup.src = "images/nav/about1.png";aboutdown = new Image;aboutdown.src = "images/nav/about2.png";
whazzupup = new Image;whazzupup.src = "images/nav/whazzup1.png";whazzupdown = new Image;whazzupdown.src = "images/nav/whazzup2.png";
teachup = new Image;teachup.src = "images/nav/teach1.png";teachdown = new Image;teachdown.src = "images/nav/teach2.png";
supportup = new Image;supportup.src = "images/nav/support1.png";supportdown = new Image;supportdown.src = "images/nav/support2.png";
shopup = new Image;shopup.src = "images/nav/shop1.png";shopdown = new Image;shopdown.src = "images/nav/shop2.png";
galleryup = new Image;galleryup.src = "images/nav/gallery1.png";gallerydown = new Image;gallerydown.src = "images/nav/gallery2.png";
talkup = new Image;talkup.src = "images/nav/talk1.png";talkdown = new Image;talkdown.src = "images/nav/talk2.png";

  
function MOver(ButtonName)  
{  
if (ButtonName=="home")   
{document.home.src = homedown.src;};
if (ButtonName=="about")   
{document.about.src = aboutdown.src;};
if (ButtonName=="whazzup")   
{document.whazzup.src = whazzupdown.src;};
if (ButtonName=="teach")   
{document.teach.src = teachdown.src;};
if (ButtonName=="support")   
{document.support.src = supportdown.src;};
if (ButtonName=="shop")   
{document.shop.src = shopdown.src;};
if (ButtonName=="gallery")   
{document.gallery.src = gallerydown.src;};
if (ButtonName=="talk")   
{document.talk.src = talkdown.src;};
}  ;

function MOut(ButtonName)  
{  
if (ButtonName=="home")   
{document.home.src = homeup.src;};
if (ButtonName=="about")   
{document.about.src = aboutup.src;};
if (ButtonName=="whazzup")   
{document.whazzup.src = whazzupup.src;};
if (ButtonName=="teach")   
{document.teach.src = teachup.src;};
if (ButtonName=="support")   
{document.support.src = supportup.src;};
if (ButtonName=="shop")   
{document.shop.src = shopup.src;};
if (ButtonName=="gallery")   
{document.gallery.src = galleryup.src;};
if (ButtonName=="talk")   
{document.talk.src = talkup.src;};
}  ;