// JavaScript Document
function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('myscroller','<span class="style31"> <p><span style="font-size:14px; font-weight:bold;">The actors were amazing, and kept us all in stitches during the whole performance.</span> Their ability to incorporate employees into the performance was just perfect. <\/p><br><br>	<p><strong>Your show made the conference a huge success.</strong> The improvisation, the jokes, the script, and the interaction was very energetic and entertaining and electifying. <span style="font-size:14px; font-weight:bold;">Outstanding!</span> <\/p><br><br>	<p><strong>Year after year they have proven to be the best</strong> and I have no doubt that we will see you again next year. <\/p>   <br><br>	<p><span style="font-size:14px; font-weight:bold;">The votes are in and the evening was a hit!</span><\/p>   <br><br>	<p>Everyone had a great evening and thoroughly enjoyed the show. <strong>Thanks again to you and the group for making our event special.</strong><\/p><br><br>	<p><span style="font-size:14px; font-weight:bold;">I would highly recommend BigTime Murder Productions to anyone thinking of hosting an entertaining and fun filled evening.</span> <\/p><br><br>	<p>You put together an excellent package. <span style="font-size:14px; font-weight:bold;">The actors were superb, obviously talented but also intuitive.</span><\/p>           <br><br>	<p><span style="font-size:14px; font-weight:bold;">We knew that we wanted to do something completely out of the regular "dinner and dance" parties,</span> and I believe I made the perfect choice.<\/p>       <br><br>	<p><span style="font-size:14px; font-weight:bold;">I have had nothing but positive comments from the partners and staff. </span> I would highly recommend you and your company to anyone looking for a way to add lots of entertainment to their event.<\/p>           <br><br>	<p><span style="font-size:14px; font-weight:bold;">Our group had a roaring good time. The only side effects experienced were stiff jaws from constantly laughing. </span> It\'s great to see such great talent!<\/p>    <\/span>');

}

var speed=10; // scroll speed (bigger = faster)
var dR=false; // reverse direction

// Vertical Scroller Javascript
// copyright 24th September 2005, by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code below (as well as these
// comments) is used without any alteration
var step = 2; function objWidth(obj) {if(obj.offsetWidth) return obj.offsetWidth; if (obj.clip) return obj.clip.width; return 0;} function objHeight(obj) {if(obj.offsetHeight) return obj.offsetHeight; if (obj.clip) return obj.clip.height; return 0;} function scrF(i,sH,eH){var x=parseInt(i.top)+(dR? step: -step); if(dR && x>sH)x=-eH;else if(x<2-eH)x=sH;i.top = x+'px';} function startScroll(sN,txt){var scr=document.getElementById(sN); var sW = objWidth(scr)-6; var sH = objHeight(scr); scr.innerHTML = '<div id="'+sN+'in" style="position:absolute; left:3px; width:'+sW+';">'+txt+'<\/div>'; var sTxt=document.getElementById(sN+'in'); var eH=objHeight(sTxt); sTxt.style.top=(dR? -eH : sH)+'px'; sTxt.style.clip='rect(0,'+sW+'px,'+eH+'px,0)'; setInterval(function() {scrF(sTxt.style,sH,eH);},1000/speed);}
window.onload = addScrollers;
                  
