/* clears default text entered into fields */
function clearSwapIts(){
	for(allSwaps in swapItArray)
	{
		if(document.getElementById(swapItArray[allSwaps][0]).value == 
swapItArray[allSwaps][1])
		{
			document.getElementById(swapItArray[allSwaps][0]).value = "";
		}

}}

