// JavaScript Document that handles the rollover of the flags
// across the top of the screen, just below the header bar


function flagOver(thisImage)
		{
			var currentFlag = thisImage + 'Flag';
			document.getElementById(currentFlag).src = "flags/" + thisImage + "Roll.gif";
		}
		
function flagOut(thisImage)
		{
			var currentFlag = thisImage + 'Flag';
			document.getElementById(currentFlag).src = "flags/" + thisImage + "Flag.gif";
		}
		
