
	var posInic = 50;
	
	function ticker() {
		var ticker = document.getElementById("ticker-content");
		posInic -= passo;
		ticker.style.marginTop = posInic + "px" ;
		
		if ((posInic*(-1))>ticker.clientHeight) {
			
			
			posInic = 220//$("ticker").clientHeight;
		//alert(posInic);
		
		}
		setTimeout("ticker()", 20);
	}
