/* This is my JavaScript Stuff */

function imageSwitch(){
	var thing = document.getElementById('geneimage');

	if(thing.src == "http://labrums.org/ui/content/clifgene.jpg"){
		thing.src = "http://labrums.org/ui/content/jenngene.jpg";
	}
	else if(thing.src == "http://labrums.org/ui/content/jenngene.jpg"){
		thing.src = "http://labrums.org/ui/content/clifgene.jpg";
	}	
}
