/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Ultimater, Mr J :: http://www.webdeveloper.com/forum/showthread.php?t=77389 */

function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}



<!-- VALOR ROTATION
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
gSlideshowIntervalV = 3;
gNumberOfImagesV = 6;

gImagesV = new ArrayV(gNumberOfImagesV);
gImagesV[0] = "newsletters/_galleries/valor-2010-a.jpg";
gImagesV[1] = "newsletters/_galleries/valor-2010-b.jpg";
gImagesV[2] = "newsletters/_galleries/valor-2010-c.jpg";
gImagesV[3] = "newsletters/_galleries/valor-2010-d.jpg";
gImagesV[4] = "newsletters/_galleries/valor-2010-e.jpg";
gImagesV[5] = "newsletters/_galleries/valor-2010-f.jpg";

function canManipulateImagesV() {
	if (document.images)
		return true;
	else
		return false;
}
function loadSlideV(imageURLV) {
	if (gImageCapableBrowserV) {
		document.valorslide.src = imageURLV;
		return false;
	}
	else {
		return true;
	}
}
function nextSlideV() {
	gCurrentImageV = (gCurrentImageV + 1) % gNumberOfImagesV;
	loadSlideV(gImagesV[gCurrentImageV]);
}
gImageCapableBrowserV = canManipulateImagesV();
gCurrentImageV = 0;
setIntervalV("nextSlideV()",gSlideshowIntervalV * 1000);
// -->


startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

<!-- List Sign-up -->
function focussearch() {

	if(document.sitesearch.query.value=='First')
		document.sitesearch.query.value=''

}
function focuslast() {

	if(document.sitesearch.last.value=='Last')
		document.sitesearch.last.value=''

}
function focuscomp() {

	if(document.sitesearch.company.value=='Company')
		document.sitesearch.company.value=''

}
function focusemail() {

	if(document.sitesearch.email.value=='Email')
		document.sitesearch.email.value=''

}

function blursearch() {

	if(document.sitesearch.query.value=='')
		document.sitesearch.query.value='First'
}

function blurlast() {

	if(document.sitesearch.last.value=='')
		document.sitesearch.last.value='Last'
}
function blurcomp() {

	if(document.sitesearch.company.value=='')
		document.sitesearch.company.value='Company'
}

function bluremail() {

	if(document.sitesearch.email.value=='')
		document.sitesearch.email.value='Email'
}

