// JavaScript Document
// this file holds the javascript function that is responsile for image rollovers
// the function takes the on mouse over image path, the on mouse out image path, and the image id as arguements

function imageRolloverMouseOn(image_id, rollover_image_filepath)
	{
		var image_to_replace = image_id;
		var image_filepath = rollover_image_filepath;
		document.getElementById(image_to_replace).src= image_filepath;
	}
	
function imageRolloverMouseOff(image_id, original_image_filepath)
	{
		var image_to_replace = image_id;
		var image_filepath = original_image_filepath;
		document.getElementById(image_id).src= image_filepath;
	}
