        //scroller width
        var swidth=350;

        //scroller height
        var sheight=120;

        //background color
        var sbcolor='#ffffff';

        //scroller's speed 1-4
        var sspeed=1;

        var testimonial=''

        //Your messages go below:
        testimonial +=
        
            '<ul><li>Because of my six figure salary,I did not able to get any job requirements in this bad period.One of my friend referred kennedy International software Inc.He said their work is top of the line,I spoke to them and submitted my resume.Here is the good news,they arranged me an interview with one of there client and following day they confirmed my job with my salary expectations. They are always prompt with regard to response.</li>'+
'<li>David (Project Manager)</li>'+
			'<li><br></li></ul>'+                     
            
            '<ul><li>The follow up service is what really surprises me. I will gladly recommend their services to all our business associates.</li>'+
            '<li>Kris (Informatica)</li>'+
			'<li><br></li></ul>'+  
			
			 '<ul><li>Kennedy International Software got its own brand in the field of recruting the professional in respective fuctionalities.</li>'+
            '<li>Mark (Project Manager)</li>'+
			'<li><br></li></ul>'+   
			
			 '<ul><li>I am impressed by the services provided by kennedy international software Inc. in order to place professionals like me in a top most organization.</li>'+
            '<li>Rahul(Ab-Initio Developer)</li>'+
			'<li><br></li></ul>'+  
			
			 '<ul><li>I highly recommend kennedy international software Inc. Technologies. I worked extensively with them to develop several web applications for my companies. They definitely exceeded my expectations! All work was completed before time, and they were working against my extremely tight timelines. They are extraordinarily responsive and efficient. Their prices are excellent as well.</li>'+
            '<li>Shamala (Websphere Admin)</li>'+
			'<li><br></li></ul>'+   
			
			 '<ul><li>I was particularly impressed with the response from your Company Executives at all levels. The quality of work and the overall experience in dealing with kennedy international software Inc. has been excellent. We thank all members of your team that worked round the clock to ensure the success of application.</li>'+
            '<li>Ann ( Client Manager)</li>'+
			'<li><br></li></ul>'+  
			
			 '<ul><li>Our experience with kennedy international software Inc. has been fantastic. Their ability to take incomplete ideas from us and convert them just as we wanted has impressed kennedy international software Inc.ation possesses the right combination of technical and design skills which have made it very easy to interact with them</li>'+
            '<li>Murthy (Informatica Developer)</li>'+
			'<li><br></li></ul>'+   
			
			 '<ul><li>The services provided by kennedy international software Inc. have helped my small business take advantage of state of the art technology in an aggressive global market. The follow up service is what really surprises me. We will gladly recommend their services to all our business associates.</li>'+
            '<li>Shruthi (.Net Developer)</li>'+
			'<li><br></li></ul>'+   
         '';

        //End of your messages
        // Begin the ticker code

        var resumesspeed=sspeed
        function testimonials() {
                if (document.all) iemarquee(ticker);
                else if (document.getElementById)
                        ns6marquee(document.getElementById('ticker'));
        }
        
        function iemarquee(whichdiv){
                iediv=eval(whichdiv)
                sheight += 0; //make this 0 to start immediately
                iediv.style.pixelTop=sheight
                iediv.innerHTML=testimonial 
                sizeup=iediv.offsetHeight
                ieslide()
        }
        
        function ieslide(){
                if (iediv.style.pixelTop>=sizeup*(-1)){
                        iediv.style.pixelTop-=sspeed
                        setTimeout("ieslide()",100) //less is more jitter and quicker
                }
                else{
                        iediv.style.pixelTop=sheight
                        ieslide()
                }
        }
        
        function ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += 0; //make this 0 to start immediately
                ns6div.style.top=sheight + "px";
                ns6div.innerHTML=testimonial
                sizeup=ns6div.offsetHeight
                ns6slide()
        }
        function ns6slide(){
                if (parseInt(ns6div.style.top)>=sizeup*(-1)){
                        theTop = parseInt(ns6div.style.top)-sspeed
                        ns6div.style.top = theTop + "px";
                        setTimeout("ns6slide()",100) //less is more jitter and quicker
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }


        