// JavaScript Document

function swapImg(id, name) {
	if(typeof id != 'undefined') {
		id.oSrc = id.src;
		id.src = 'images/'+name+'.jpg';
	}
}

function restoreImg(id) {
	if(typeof id != 'undefined') {
		id.src = id.oSrc;	
	}
}