
			var Cloud = {

				__skills_t: false,
				__jobs_t: false,
				__locations_t: false,

				__skills_box: false,
				__jobs_box: false,
				__locations_box: false,


				initTriggers: function(){

					this.__skills_t = document.getElementById("sectors");
					this.__jobs_t = document.getElementById("jobs");
					this.__locations_t = document.getElementById("locations");

					this.__skills_box = document.getElementById("sectors_box");
					this.__jobs_box = document.getElementById("jobs_box");
					this.__locations_box = document.getElementById("locations_box");

					this.__skills_t.onclick = function(){Cloud.doAction(Cloud.__skills_t); return false;}
					this.__jobs_t.onclick = function(){Cloud.doAction(Cloud.__jobs_t); return false;}
					this.__locations_t.onclick = function(){Cloud.doAction(Cloud.__locations_t); return false;}

				},


				doAction: function(elem){

					if(elem.className != "active"){

						this.__skills_t.className="";
						this.__jobs_t.className="";
						this.__locations_t.className="";

						this.__skills_box.style.display = "none";
						this.__jobs_box.style.display = "none";
						this.__locations_box.style.display = "none";

						elem.className = "active";
						document.getElementById(elem.id+"_box").style.display = "block";

					}

				}


			}

