<!--
// Name:	CreateImages (Menu)
// Author:	Dave Walker
//		(c) Copyright Dave Walker, 2005. All rights reserved.
// Date:	21st August 2005
// Purpose:	Create images for the navigation bar ( menu)

function CreateImages()
{
   home_up = new Image(); home_up.src = "/images/home_up.gif";
   home_down = new Image(); home_down.src = "/images/home_down.gif";

   champs_up = new Image(); champs_up.src = "/images/champs_up.gif";
   champs_down = new Image(); champs_down.src = "/images/champs_down.gif";

   gallery_up = new Image(); gallery_up.src = "/images/gallery_up.gif";
   gallery_down = new Image(); gallery_down.src = "/images/gallery_down.gif";

   links_up = new Image(); links_up.src = "/images/links_up.gif";
   links_down = new Image(); links_down.src = "/images/links_down.gif";

   marathon_up = new Image(); marathon_up.src = "/images/marathon_up.gif";
   marathon_down = new Image(); marathon_down.src = "/images/marathon_down.gif";

   results_up = new Image(); results_up.src = "/images/results_up.gif";
   results_down = new Image(); results_down.src = "/images/results_down.gif";

   info_up = new Image(); info_up.src = "/images/info_up.gif";
   info_down = new Image(); info_down.src = "/images/info_down.gif";

   search_up = new Image(); search_up.src = "/images/search_up.gif";
   search_down = new Image(); search_down.src = "/images/search_down.gif";

   contact_up = new Image(); contact_up.src = "/images/contact_up.gif";
   contact_down = new Image(); contact_down.src = "/images/contact_down.gif";
}
//-->
