// JavaScript Document
var cursor;
function showDiv(divid){
	$(cursor).style.display = "none";
	$(divid).style.display = "block";
	cursor = divid;
}