﻿
		//TODO - preload the images for the buttons
	
		/*Purpose:
		Select the page to be shown in the IFrame
		Params:
		pagePath - the relative path to the page to show in the IFrame
		*/
		function SelectPage(pagePath)
		{
		
			window.location = pagePath;
		
		}
		
		/*Purpose:
		Change the button image to the roll over image
		Params:
		button - the instance of the button that was called
		Assumptions:
		The over image is callsed buttonName + over.gif
		*/
		function RollOverButton(button)
		{
			//button.src = "images/" + button.name + "Over.gif";
		}
		
		/*Purpose:
		Change the button image to the idle image
		Params:
		button - the instance of the button that was called
		Assumptions:
		The idle image is called buttonName + idle.gif
		Images are in the /images directory
		*/
		function MakeButtonIdle(button)
		{
			//button.src = "images/" + button.name + "Idle.gif";
		}
