function testimonials(){
	var testimonials = document.getElementById("testimonials-in").innerHTML;
	document.getElementById("testimonials-in").innerHTML='<marquee id="testimonials-marquee" behavior="scroll" loop="infinite" direction="up" scrollamount="1" scrolldelay="50" truespeed="true" onmouseover="stop();" onmouseout="start();">'+testimonials+'</marquee>';
	document.getElementById("testimonials-marquee").start();
		
	if(navigator.appName!="Microsoft Internet Explorer"){
		document.getElementById("testimonials-marquee").style.marginTop=-1*document.getElementById("testimonials-ul").offsetHeight+"px";
		document.getElementById("testimonials-marquee").style.height=document.getElementById("testimonials-marquee").offsetHeight+document.getElementById("testimonials-ul").offsetHeight+"px";
	}
}

window.onload = function(){testimonials();};



function show(id){document.getElementById(id).className='show';}
function hide(id){document.getElementById(id).className='hide';}
