var alt1 = '<strong>&ldquo;For me it is very important to be healthy because being ill means I cannot take good care of my family. There&rsquo;s only one salary left if I cannot work with my husband. So I was really happy to hear the test was good&rdquo;</strong><br /><br />Annah (Indonesia)';
var alt2 = '<strong>&ldquo;I like to know if I&rsquo;m healthy or not. I want to get checkups. You don&rsquo;t have to be shy because the provider is a woman and the test and treatment are free&rdquo;</strong><br /><br />Madeh (Indonesia)';
var alt3 = '<strong>&ldquo;Women in my community are scared of cervical cancer, because they have seen someone die from it. I feel good because of the See&Treat there&rsquo;s no need to be worried about cancer now&rdquo;</strong><br /><br />Leatitia from Drie Tabbetjes (Surinam)';
var alt4 = '<strong>&ldquo;When you are confronted with women who have cervical cancer in developing countries, you become aware how incredible important it is for us to do everything we can to bring this project to a successful end&rdquo;</strong><br /><br />Lex Peters, prof.dr. in gynaecology';
var alt5 = '<strong>&ldquo;I told my family and neighbours that you can have sick cells inside of you even if you are not feeling ill. That&rsquo;s why it is very important to go to this screening. This horrible disease has to be prevented and now there is a way to do so!&rdquo;</strong><br /><br />mw. Pinas (Surinam)';
var alt6 = '<strong>&ldquo;Because of the awareness from the health providers in my village, it became complete clear to me what causes cervical cancer and how easy this disease is to prevent. I consider it my duty to spread this message from the See&Treat project.&rdquo;</strong><br /><br />Raya (Indonesia)';
var alt7 = '<strong>&ldquo;I wanted to know what was wrong because I had for a longer period some bleeding. After 	being screened positive I was treated with cryotherapy without feeling any pain&rdquo;</strong><br /><br />Rosa (Surinam)';
var alt8 = '<strong>&ldquo;Women are very important in our community. I really want my wife to be healthy. If anything is wrong she will find out now before it is serious&rdquo;</strong><br /><br />Wajan (husband of screened woman, Indonesia)';


function cases(mode){
	var srce = document.getElementById('visual').src;
	var nr = parseInt(srce.substr(srce.length - 5,1));
	if(mode){
		if(nr+1 < 9){
			nr++;
		}else{
			nr = 1;
		}
	}else{
		if(nr-1 > 0){
			nr--;
		}else{
			nr = 3;
		}
		
	}
	document.getElementById('visual').src = '/ttmcmssite/skins/FCP/images/foto'+nr+'.jpg';
	document.getElementById('alt').innerHTML = eval('alt'+nr);
}