// JavaScript Document

function imageSwap( imgID, imgSrc ){
		if (document.getElementById ){
				document.getElementById( imgID ).src = imgSrc;
			}
	}