function load() {

  if (document.getElementById("employers").style.display == "block")
    document.getElementById("employersarrow").style.backgroundImage="url(./wp-content/themes/bwd/images/downarrow.gif)";
  else
    document.getElementById("employersarrow").style.backgroundImage="url(./wp-content/themes/bwd/images/rightarrow.gif)";

  if (document.getElementById("candidates").style.display == "block")
    document.getElementById("candidatesarrow").style.backgroundImage="url(./wp-content/themes/bwd/images/downarrow.gif)";
  else
    document.getElementById("candidatesarrow").style.backgroundImage="url(./wp-content/themes/bwd/images/rightarrow.gif)";

  if (document.getElementById('fade')) {
    slowly.fade('fade');
    intval=window.setInterval("slowly.fade('fade')",10000);
  }

}

function zzzshowTestimonial () {
  document.getElementById('bwdtestimonial').innerHTML = testimonial[nextsubscript];
  document.getElementById('bwdname').innerHTML = name[nextsubscript];
  document.getElementById('bwdcompany').innerHTML = company[nextsubscript];
  nextsubscript++;
  if (nextsubscript>maxsubscript)
    nextsubscript=0;
}

function toggleMenu(id) {

  if (document.getElementById(id).style.display == "none") {
    document.getElementById(id).style.display="block";
    document.getElementById(id + "arrow").style.backgroundImage="url(./wp-content/themes/bwd/images/downarrow.gif)";
    setCookie(id, 'block');
  }
  else {
    document.getElementById(id).style.display="none";
    document.getElementById(id + "arrow").style.backgroundImage="url(./wp-content/themes/bwd/images/rightarrow.gif)";
    setCookie(id, 'none');
  }

  return false;
}

function setCookie(c_name,value,expiredays) {
  var exdate=new Date();
  exdate.setDate(exdate.getDate()+expiredays);
  document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}


var opacityArray = new Array(100,100,100,100,100,100,100,100,100,100,
                             100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,
                             100,90,80,70,60,50,40,30,20,10);
var slowly = {
	fade : function (id) {
		var o = document.getElementById(id);
		o.style.display = "none";
		this.showTestimonial();
		this.fadeLoop(id, 0);
	},
	fadeLoop : function (id, subscript) {
		var o = document.getElementById(id);
		if (subscript <= 50) {
			slowly.setOpacity(o, opacityArray[subscript]);
			subscript++;
			window.setTimeout("slowly.fadeLoop('" + id + "', " + subscript + ")", 200);
		}
		if (subscript <= 1)
			o.style.display = "block";
	},
	setOpacity : function (o, opacity) {
		o.style.filter = "alpha(style=0,opacity:" + opacity + ")";	// IE
		o.style.KHTMLOpacity = opacity / 100;				// Konqueror
		o.style.MozOpacity = opacity / 100;					// Mozilla (old)
		o.style.opacity = opacity / 100;					// Mozilla (new)
	},
	showTestimonial : function () {
		document.getElementById('bwdtestimonial').innerHTML = testimonial[nextsubscript];
		document.getElementById('bwdname').innerHTML = name[nextsubscript];
		document.getElementById('bwdcompany').innerHTML = company[nextsubscript];
		nextsubscript++;
		if (nextsubscript>maxsubscript)
			nextsubscript=0;
	}
}
