// Title: hsi/javascripts/helper.js
//	Helper functions for rest of site
//
// Author:
//	Michael Behan




// Function: imgswap
//	Swaps the src of an image
//
// Parameters:
//	img - The image object to manipulate
//	_src - The src of the image to replace current img with
function imgswap(img, _src) { 
	img.src = _src; 
}
