        //scroller width
        var swidth=250

        //scroller height
        var sheight=50

        //background color
        var sbcolor='#EEEEEE'

        //scroller's speed
        var sspeed=1

        var msg=''

        //Your messages go below:

        msg='<table width=100% border=0 cellspacing=0 cellpadding=0>'+
		//BLURB ONE START
		'<tr><td valign=top class=NewsHeader>'+
		//Swap out text between quotes - Make sure there are no single or double quotes in the quote
		'At JPMerc & Co., many specific problems have been addressed utilizing the Naming the Storm™ framework.'+
		//Swap out quote citation between <em> tags
		'<br><em>- Joseph P. Mercadante, Founder & CEO <br>JPMerc & Co</em>'+
		'</td></tr>'+
		//Swap out href destination
		'<tr><td><a class=NewsLinks a href=/references/consulting/technology.htm#Merc>Read More</a></td></tr>'+
        '<tr><td height=20></td></tr>'+
		//BLURB ONE END
		
		//BLURB TWO START
		'<tr><td valign=top class=NewsHeader>'+
		//Swap out text between quotes - Make sure there are no single or double quotes in the quote
		'If you are looking for leadership coaching and a change agent to pump some new life into your organization, Debbie Depp can help you make a difference and get results.'+
		//Swap out quote citation between <em> tags
		'<br><em>- Dick Taylor, General Manager - Masterman&#8217;s</em>'+
		'</td></tr>'+
		//Swap out href destination
		'<tr><td><a class=NewsLinks href=/references/coaching_and_training/distribution.htm>Read More</a></td></tr>'+
        '<tr><td height=20></td></tr>'+
		//BLURB TWO END
		
		//BLURB THREE START
		'<tr><td valign=top class=NewsHeader>'+
		//Swap out text between quotes - Make sure there are no single or double quotes in the quote
		'So many of these types of events feel good but lack the tangible results - that is what really sets you and          Naming the Storm™ apart from the rest.'+
		//Swap out quote citation between <em> tags
		'<br><em>- Shelley Kemling, Director, HR & Compensation - Synapse (a Time Warner company)</em>'+
		'</td></tr>'+
		//Swap out href destination
		'<tr><td><a class=NewsLinks a href=/references/consulting/services.htm#Synapse>Read More</a></td></tr>'+
        '<tr><td height=20></td></tr>'+
		//BLURB THREE END
		
		//BLURB FOUR START
		'<tr><td valign=top class=NewsHeader>'+
		//Swap out text between quotes - Make sure there are no single or double quotes in the quote
		'Debbie brings a lot of energy to the stage. She helps bring passion to defining a company’s value proposition.'+
		//Swap out quote citation between <em> tags
		'<br><em>- Bret Guenther, President - Dentistat</em>'+
		'</td></tr>'+
		//Swap out href destination
		'<tr><td><a class=NewsLinks href=/references/speaking/healthcare.htm>Read More</a></td></tr>'+
        '<tr><td height=20></td></tr>'+
		//BLURB FOUR END
		
		//BLURB FIVE START
		'<tr><td valign=top class=NewsHeader>'+
		//Swap out text between quotes - Make sure there are no single or double quotes in the quote
		'Debbie Depp provides practical results-oriented sales advice that will benefit any organization...she uses a winning combination of front-line sales experience and humor to get her points across. It is a &#8217;must-attend&#8217; for corporate executives looking for creative ways to improve sales productivity'+
		//Swap out quote citation between <em> tags
		'<br><em>- Gordon Hoffstein, Executive VP - CompUSA</em>'+
		'</td></tr>'+
		//Swap out href destination
		'<tr><td><a class=NewsLinks href=/references/coaching_and_training/retail.htm>Read More</a></td></tr>'+
        '<tr><td height=20></td></tr>'+
		//BLURB FIVE END
		
		//BLURB SIX START
		'<tr><td valign=top class=NewsHeader>'+
		//Swap out text between quotes - Make sure there are no single or double quotes in the quote
		'A true marketing visionary who delivers on her promise to provide clear, long-term objectives designed to help you achieve your business goals.'+
		//Swap out quote citation between <em> tags
		'<br><em>- Joan M. Gallagher, VP Corporate Public Affairs <br>The Gillette Company</em>'+
		'</td></tr>'+
		//Swap out href destination
		'<tr><td><a class=NewsLinks href=/references/coaching_and_training/manufacturing.htm>Read More</a></td></tr>'+
        '<tr><td height=20></td></tr>'+
		//BLURB SIX END
				
		'</table>';

        //End of your messages


        //-- end Parameters-->
        //-- begin: Scroller's Algorithm -->

        var resumesspeed=sspeed
        function start(){
        if (document.all) iemarquee(slider);
        else if (document.getElementById)
        ns6marquee(document.getElementById('slider'));
        else if(document.layers)
        ns4marquee(document.slider1.document.slider2);
        }
        function iemarquee(whichdiv){
        iediv=eval(whichdiv)
        iediv.style.pixelTop=sheight
        iediv.innerHTML=msg
        sizeup=iediv.offsetHeight
        ieslide()
        }
        function ieslide(){
        if (iediv.style.pixelTop>=sizeup*(-1)){
        iediv.style.pixelTop-=sspeed
        setTimeout("ieslide()",100)
        }
        else{
        iediv.style.pixelTop=sheight
        ieslide()
        }
        }
        function ns4marquee(whichlayer){
        ns4layer=eval(whichlayer)
        ns4layer.top=sheight
        ns4layer.document.write(msg)
        ns4layer.document.close()
        sizeup=ns4layer.document.height
        ns4slide()
        }
        function ns4slide(){
        if (ns4layer.top>=sizeup*(-1)){
        ns4layer.top-=sspeed
        setTimeout("ns4slide()",100)
        }
        else{
        ns4layer.top=sheight
        ns4slide()
        }
        }
        function ns6marquee(whichdiv){
        ns6div=eval(whichdiv)
        ns6div.style.top=sheight
        ns6div.innerHTML=msg
        sizeup=ns6div.offsetHeight
        ns6slide()
        }
        function ns6slide(){
        if (parseInt(ns6div.style.top)>=sizeup*(-1)){
        ns6div.style.top=parseInt(ns6div.style.top)-sspeed
        setTimeout("ns6slide()",100)
        }
        else{
        ns6div.style.top=sheight
        ns6slide()
        }
        }
