/**
 * @author greppinfunk
 */
function swapImage( imageName, imageSrc ){
	document[imageName].src = imageSrc;
	return true;
}
