function eyesRoll(n) {
	document.getElementById("pop").style.top = 0;
	var theText = document.getElementById("popText");
	var theArrow = document.getElementById("popArrow");
	switch(n) {
		case 1:
			theArrow.style.left = "5px";
			theText.innerHTML = "<span>Javier</span> is a victim of human trafficking forced to do back breaking work picking strawberries; sometimes paid minimum wage or not paid at all and was physically and verbally abused if he took a momentary break from picking. His travel documents and identification card were taken away and threatened with harmful consequences if he tried to escape. Javier was exploited for his labor."
			break;
		case 2:
			theArrow.style.left = "120px";
			theText.innerHTML = "<span>Tanya</span> is a child victim of human trafficking coerced into the sex industry and forced into commercial sexual exploitation. She was transported to various cities and sold by her trafficker for sexual services; she was also physically abused and verbally threatened should she try to run away. Tanya was exploited for commercial sex."
			break;
		case 3:
			theArrow.style.left = "252px";
			theText.innerHTML = "<span>Amma</span> is a victim of human trafficking recruited and forced to work as a domestic servant for a wealthy banker. She worked 24 hours 7 days a week with little time off, never paid, sexually abused by her trafficker, slept in a cold basement on a floor mattress and made to eat leftovers as her meals. Amma was exploited for her labor."
			break;
		case 4:
			theArrow.style.left = "403px";
			theText.innerHTML = "<span>Henry</span> is a homeless disabled victim of human trafficking recruited and coerced to peddle in the streets for money, rain or shine and the profits would go to the traffickers. Henry was transported to/from various peddling sites and required to met a daily quota, if it was not met he was beaten, scolded and made to work extra hours to make up the lost profits. He could not leave because he feared the threats of being killed by the traffickers. Henry was exploited for his labor."
			break;
		case 5:
			theArrow.style.left = "538px";
			theText.innerHTML = "<span>Andrea</span> is a victim of human trafficking recruited to work in a restaurant and forced into sexual exploitation. She worked long hours at the restaurant, she could not leave this job and received little pay from which the trafficker deducted living and transportation expenses. Andrea lived and also worked in the trafficker's brothel and forced to provide sexual services to customers at the trafficker's whim. Andrea was exploited for labor and commercial sex."
	}
}

function eyesRollout() {
	document.getElementById("pop").style.top = "-1000px";
}