	var g, c, d, x, e, toi;
	var pa = "px";

function runScroller(lir,act,spd){
	var elem = document.getElementById(lir);
	g = elem.style;
	x = parseInt(g.top);
	d = g.pixelHeight;
//	c = document.getElementById('bGazetOuter').style.clipheight;
	c = 213;
//	window.status = d;
	if (act == "Stop"){
		window.status = "";
		clearTimeout(toi);
	
	} else {
		moveScroller(lir,act);
	}
}

function moveScroller(lir,act){
	var elem = document.getElementById(lir);
	g = elem.style;
	
	if (act == "Down"){
		x = x - 5;
		var check = d - c + x;
		if (check > 180) {
		g.top = x + pa;
//		window.status = g.top + " | " + check + " | " + x;
		toi = setTimeout("moveScroller('"+lir+"','"+act+"')", 30);
	}

	}
	if (act == "Up"){
		x = x + 5;
		var check = d - c + x;
		if (x < 10){
		g.top = x + pa;
//		window.status = g.top + " | " + lir + " | " + x + " | " + act;
		toi = setTimeout("moveScroller('"+lir+"','"+act+"')", 30);
	}	
	
	}	

}

function autoScrolling(){

//	moveScroller('bGazet','Down');
//	window.status = "qweqwe";
	runScroller('bGazet','Down','Medium');

}
