function addScrollers() {
// code each scroller as follows:
// startScroll('id of scroller div','content of scroller');
startScroll('div_scrolling_news','Silicon   Valley is another  name of skillfulness by virtue of possessing special knowledge in the field of  <a href="economy-hosting.html" title="website Hosting services"><strong>hosting services</strong></a>. We differentiate ourselves by providing a range of excellent  services like <a href="hosting.html" title="website host india"><strong>Website Hosting India</strong></a>,<a href="web-design.html" title="Web design India"><strong> Web designing</strong></a>, <a href="web-development.html" title="Web Development India"><strong>Web Development</strong></a>, <a href="ecommerce-development.html" title="eCommerce website  Development India"><strong>eCommerce development</strong></a>, <a href="offshore-outsourcing.html" title="Offshore Outsourcing India"><strong>Offshore Outsourcing</strong></a> coupled with some free offers as well. We also provide website development services like <a href="php-development.html" title="PHP website development India"><strong>PHP website development</strong></a>, <a href="asp-development.html" title="ASP Programming"><strong>asp programming</strong></a>,<a href="dot-net-development.html" title="ASP DOT net programming India"><strong> asp.net programming  </strong></a> and <a href="ajax-web-programming.html" title="ajax web programming India"><strong>Ajax Programming</strong></a>. We present our dedicated and technically sound staff members that will assist you with all your needs, complains and requirements at  any hour of the day. We also take advantage in facilitating customers to  realize their goal of <strong>demonstrating web  presence</strong> <strong>for</strong> <strong>high-esteemed organizations</strong>. The  productive environment always <strong>explore  technology</strong> redefining the services to offer the best available on net.');
}


var speed=15; // scroll speed (bigger = faster)
var dR=false; // reverse direction
var pause = false;
// 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){
	if(!pause){
		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){
	document.getElementById(sN).onmouseover = function(){
			pause = true;
		};
	document.getElementById(sN).onmouseout = function(){
			pause = false;
		};

	var scr=document.getElementById(sN); 
	var sW = objWidth(scr)-6; 
	var sH = objHeight(scr); 
	scr.innerHTML = '<div id="'+sN+'in" style="position:absolute; 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;

