function flip(object,thingOne,thingTwo) {
	button = document.getElementById(object);
 
	if(button.className == thingOne){
 		button.className = thingTwo;
 	}
 	else{
 		button.className = thingOne;
 	}
}