function clickAkkordeon(id){
  var el=document.getElementById(id);
  if ((el)&&(el.className)){
    if (el.className.match(/akkordeonopen/))
      el.className=el.className.replace('akkordeonopen','akkordeonclosed');
    else
      el.className=el.className.replace('akkordeonclosed','akkordeonopen');
    if ((typeof CmsToolbarElement != 'undefined') && (CmsToolbarElement)) CmsToolbarElement.relayoutAll();
  }
}

function hover(elid){
  var el = document.getElementById(elid);
  if (el) el.className='hover';
}
function leave(elid){
  var el = document.getElementById(elid);
  if (el) el.className='';
}
function nhover(id){
  hover('nt'+id);
  hover('ni'+id);
  hover('nl'+id);
}
function nleave(id){
  leave('nt'+id);
  leave('ni'+id);
  leave('nl'+id);
}


function _submit()
{
     var inputs = document.getElementsByTagName("input");
     for (var i=0; i<inputs.length; i++)  {
          if (inputs[i].className == "btn-go")  {
               inputs[i].onmouseover = function()
               {
                  this.src = this.src.replace(".gif", "-hover.gif");
               }
               inputs[i].onmouseout = function()
               {
                    this.src = this.src.replace("-hover.gif", ".gif");
               }
          }
     }
}
if (window.addEventListener)
     window.addEventListener("load", _submit, false);
else if (window.attachEvent)
     window.attachEvent("onload", _submit);