/* FS Command */
	function swfMenu_DoFSCommand(command, args){
		//alert(command + '=' + args);
		if(command == "click"){
			switch(args){
				case "home" :				location.href = "http://www.vigilantfutures.ca/index.php";						break;
				case "vision" :				location.href = "http://www.vigilantfutures.ca/vision.php";						break;
				case "IT" :					location.href = "http://www.vigilantfutures.ca/Information-Technology.php";		break;
				case "RD" :					location.href = "http://www.vigilantfutures.ca/Research-Development-Team.php";	break;
				case "culture" :			location.href = "http://www.vigilantfutures.ca/culture.php";					break;
				case "recruitment" :		location.href = "http://tbe.taleo.net/NA6/ats/careers/jobSearch.jsp?org=VIGILANT&cws=1";				break;
				case "contact" :			location.href = "http://www.vigilantfutures.ca/contact.php";					break;				
				//default : alert(command + '=' + args);
			}
		}
	}
	

	/* GOOGLE TOOLBAR OVERRIDE */
	 if(window.attachEvent)
    window.attachEvent("onload",setListeners);

  function setListeners(){
    inputList = document.getElementsByTagName("INPUT");
    for(i=0;i<inputList.length;i++){
      inputList[i].attachEvent("onpropertychange",restoreStyles);
      inputList[i].style.backgroundColor = "";
    }
    selectList = document.getElementsByTagName("SELECT");
    for(i=0;i<selectList.length;i++){
      selectList[i].attachEvent("onpropertychange",restoreStyles);
      selectList[i].style.backgroundColor = "";
    }
  }

  function restoreStyles(){
    if(event.srcElement.style.backgroundColor != "")
      event.srcElement.style.backgroundColor = "";
  }