function random_testimonials(site){
			  
	var about=new Array()

	about[1]="The Samwers are extremely focused and proactive. They seek out opportunities like real entrepreneurs.<div class=\"floatRight padding20 testemonialSig\">Dennis Bemmann,<br/>Founder, StudiVZ</div>";
	about[2]="We chose the Samwer brothers because of their impressive track record and their deep insights in the European internet markets.<div class=\"floatRight padding20 testemonialSig\">Marc Diana,<br/>CEO, Leadpoint</div>";
	about[3]="The Samwer brothers are consistently thinking about the next step and are mission-critical for our international expansion and our overall growth.<div class=\"floatRight padding20 testemonialSig\">Heiko Huberts,<br/>Founder, Bigpoint</div>";
	
	
	 switch (site) {

			case 'about':
				
				var ry=Math.floor(Math.random()*about.length)
	
				if (ry==0)
				 
				 ry=1
	 
				document.write('"'+about[ry]+'"')	;
				
			break;
		
			default:
			break;
			
	}
			
}