function testimonial_banner_click() {
	
	var as = this.getElementsByTagName('a');
	
	if (as.length > 0) {
		
		document.location = as[0].href;
		return false;
		
	}	

}

function init_landingspagina() {
	
	var tb = document.getElementById('testimonial_banner');
	
	if (tb) {

		tb.onclick = testimonial_banner_click;

	}
	
}