/**
 * @author jcimafranca
 */

function setImageOut(path){ 	

   if (document.getElementById("t_msg").innerHTML == "What is Bullseye?") 
   {
		document.getElementById("img_bullseye").src = path+"images/bullseye.gif";
		document.getElementById("img_careers").src = path+"images/careers-rollout.gif";
   }
   if (document.getElementById("t_msg").innerHTML == "What is Careers?") 
   {
		document.getElementById("img_bullseye").src = path+"images/bullseye-rollout.gif";
		document.getElementById("img_careers").src = path+"images/careers.gif";
   }
   if (document.getElementById("t_msg").innerHTML == "")
   {
   		document.getElementById("img_bullseye").src = path+"images/bullseye.gif";
		document.getElementById("img_careers").src = path+"images/careers-rollout.gif";
   }			         
} 

function setImageHover(theid, img){
	if (document.getElementById("t_msg").innerHTML == "What is Bullseye?") {
		if (theid == "img_bullseye") {
			// do nothing
		}
		else {
			document.getElementById(theid).src = img;
		}
	}
	else {
		if (theid == "img_careers") {
			// do nothing
		}
		else {
			document.getElementById(theid).src = img;
		}
	}
}

function setImage(theid,path){
	if (theid == "img_bullseye") {
		document.getElementById("img_bullseye").src = path+"images/bullseye.gif";
		document.getElementById("img_careers").src = path+"images/careers-rollout.gif";
		document.getElementById("t_msg").innerHTML = "What is Bullseye?";
		document.getElementById("a_msg").setAttribute("href","http://www.matadorhub.com/bullseye/");
	}else{
		document.getElementById("img_careers").src = path+"images/careers.gif";
		document.getElementById("img_bullseye").src = path+"images/bullseye-rollout.gif";
		document.getElementById("t_msg").innerHTML = "What is Careers?";
		document.getElementById("a_msg").setAttribute("href","http://www.matadorhub.com/careers/");
	}
}



