// Function to swap images for rollovers - triggered onMouseOver and onMouseOut
// This function takes two parameters
//	1. image_tag specifies the document object to be swapped under the Document Object Model
//	2. the_image is the image to be swapped in


function swap(image_tag, the_image){
		
	image_tag.src = the_image;
	
} //End Function


function unswap(image_tag, the_image){

	image_tag.src = the_image;

} //End Function