/* This file is part of the halo film website
   Copyright 2009 Luke Armstrong
   
   Website implemented on behalf of Luke Armstrong
   by LGaming (http://lgaming.freehosty.com/)
*/

/*
   ImageMod ( name, image )
   Changes the image in the image tag defined by name to
   the image defined by image.
   
   Usage:
   Use in an onEvent function for best results.
   <a href="#" onMouseOver="ImageMod('me', 'layout/picture2.png')">
   Link text.</a>
   <img src="layout/picture1.png" name="me" alt="Image">
*/
function ImageMod ( name, image )
{
	eval ( "document.images." + name + ".src='" + image + "'" );
	return true;
}
