﻿function jobshowhide (id) { 
	alldiv = document.getElementsByTagName('div');
	for (i = 0;i < alldiv.length; i++){
		if (alldiv[i].className == "show"){
			alldiv[i].className = "hide";
		}
	}
	whichid = document.getElementById(id);
	whichid.className = "show";
}