function showVideo(id, highlighted){
	var w = 280;
	var h = 210;
	var r = 0;
	var idVideo = id;
	var autoplay = "true";					   
	var parent = document.getElementById('videos_sudafrica');
	var as = parent.getElementsByTagName("a");
	for (var i=0; i<as.length; i++) {
		 if(as[i].id == highlighted){
			 as[i].className = 'highlighted';
		 }else{
			 as[i].className = '';
		 }
	}	
	if(document.getElementById('current_video').id){
		document.getElementById('current_video').src = "http://www.tvolucion.com/embed/embed.php?id="+idVideo+"&w="+w+"&h="+h+"&skin=home&autoplay="+autoplay+"&move_reporting=esmas_home";						
	}
}

