/*
function ticker(){
	var ticker = document.getElementById("ticker").innerHTML;
	document.getElementById("ticker").innerHTML='<marquee id="ticker-marquee" scrollamount="1" scrolldelay="20" truespeed="true" onmouseover="stop();" onmouseout="start();" onfinish="alert(\'prc\')">'+ticker+'</marquee>';
	document.getElementById("ticker-marquee").start();
	/ *
	if(navigator.appName!="Microsoft Internet Explorer"){
		document.getElementById("ticker-marquee").style.marginLeft=-1*document.getElementById("ticker").offsetWidth+"px";
		document.getElementById("ticker-marquee").style.width=document.getElementById("ticker-marquee").offsetWidth+document.getElementById("ticker").offsetWidth+"px";
	}
	* /
}
*/
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();};