defaultStatus = "Welcome to Silkrooster.com";

function disappear(obj) {
	if (obj === undefined) return;
  if (obj.style.display == "") {
    obj.style.display = "none";
  }
  else {
    obj.style.display = "";
  }
}