function designOption(opt)  {
  hideDesignOption("webdesign");
  hideDesignOption("production");
  hideDesignOption("website");
  hideDesignOption("flash");
  hideDesignOption("ecommerce");
  hideDesignOption("cms");
  hideDesignOption("custom");
	
  showDesignOption(opt);
}

function showDesignOption(opt)  {
  var anchor = document.getElementById(opt+'Opt');
  anchor.className = "optionover";
  anchor.blur();

  var detail = document.getElementById(opt);
  detail.className = "";
}

function hideDesignOption(opt)  {
  var anchor = document.getElementById(opt+'Opt');
  anchor.className = "option";

  var detail = document.getElementById(opt);
  detail.className = "hide";
}

