
        //scroller width
        var swidth=220;

        //scroller height
        var sheight=140;

        //background color
        var sbcolor='#ffffff';

        //scroller's speed
        var sspeed=1;

        var msg=''

        //Your messages go below:


        msg +=
        
            '<ul><li><a href="http://csrpakistan.pk" target="_blank" title="">Muhammad Nawaz Sharif, President Pakistan Muslim League N ,  </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> I agree with the theme of CSR PAKISTAN YEAR BOOK. Pakistan has the potential to become an economic power by depending on its own resources, effectively making productive use of its vast natural and human capital. I am firmly of the belief that key to success is self reliance, because nations charter their destiny themselves. </li>'+
            '<li> </li></ul>'+                     
            
            '<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Byram D. Avari - Avari Hotels Group </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> CSR PAKISTAN is an interesting book. I want to congratulate you on the excellent publication.</li>'+
            '<li> </li></ul>'+  
			
			'<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Rune Stroem, Country Director Pakistan, Asian Development Bank </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> CSR PAKISTAN is comprehensive and provides a good overview of Pakistan corporate sector commitment to, and involvement in the social development of the country.</li>'+
            '<li> </li></ul>'+  
			
				'<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Raja Rehan Arshad, Acting Head of Islamabad Office, World Bank </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> We congratulate you on the successful launch of CSR PAKISTAN YEAR BOOK 2009.</li>'+
            '<li> </li></ul>'+  
			
			'<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Dr Hyder Reza Zabet - Embassy of Islamic Republic of Iran, Pakistan </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> CSR PAKISTAN is a beautifully illustrated book, which is very well written and produced by Capital Business Pakistan Private Limited. I wish you all the success in your noble endeavours. Blessed be sacred land Pakistan, Happy be the bounteous realm, and symbol of high resolve, land of Pakistan. Long-Live Pakistan-Iran brotherhood and friendship.</li>'+
            '<li> </li></ul>'+  
                      
					  '<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Quaid-e-Azam Library, Lahore </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> CSR PAKISTAN is a valuable addition to the collection of our library. I hope such cooperation will continue in future.</li>'+
            '<li> </li></ul>'+  
                      
					  '<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Humayun Ahmed, Secretary SIND CLUB, Karachi </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> The printing, layout and design of the CSR PAKISTAN YEAR BOOK are immensely attractive and a result of highly commendable effort. The book is worth reading and is a good addition to our library.</li>'+
            '<li> </li></ul>'+  
			
				  '<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Lieutenant Colonel (Retired), Jawed Akhtar, Secretary Lahore Gymkhana  </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> CSR PAKISTAN is certainly a valuable addition to our library and has been placed in the library for issuance to members. Your noble gesture of donating the book shall always be remembered by the members of Lahore Gymkhana.</li>'+
            '<li> </li></ul>'+  
			
			  '<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Wing Commader (Retired), Hasan Mazahir, Secretary Karachi Gymkhana Club  </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> CSR PAKISTAN is indeed a very good addition to our Gymkhana library. I appreciate your kind gesture.</li>'+
            '<li> </li></ul>'+  
			
				  '<ul><li><a href="http://csrpakistan.pk" target="_blank" title=""> Agha Khalid Mehmood, Secretary Punjab Club, Lahore  </a></li>'+
            '<li><span class="homeHeading">&raquo;</span> CSR PAKISTAN shall prove to be very useful to all our members and is a useful addition to our library. We are grateful for your kind patronage of Punjab Club facilities and services.</li>'+
            '<li> </li></ul>'+  
			

        '';

        //End of your messages
        // Begin the ticker code

        var resumesspeed=sspeed
        function start() {
                if (document.all) iemarquee(ticker);
                else if (document.getElementById)
                        ns6marquee(document.getElementById('ticker'));
        }
        
        function iemarquee(whichdiv){
                iediv=eval(whichdiv)
                sheight += 50;
                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 ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += 50;
                ns6div.style.top=sheight + "px";
                ns6div.innerHTML=msg
                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)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }