

function swapImage(id,newSrc){
	document.getElementById(id).src = newSrc;
}

/*
var current = '';
function clickSwap(fullSrc){
	//unset the old thumb
	if (current != ''){
		swapImage(current.toString(),'assets/white.gif');
	}
	swapImage('fullSizeImg',fullSrc);
	
	current = theID;
	
}


function mouseOverMe(theID,thumbSrc){
	swapImage(theID,thumbSrc);
}




function mouseLeaveMe(theID,fullSrc,thumbSrc){
	if (theID != current){
		swapImage(theID,'assets/white.gif');
	}
}

*/