<!--
( function() {
	
	var d = 33, c = 0, o = document.getElementById('fhggmarquee');
	var timeid = 0;
	
	function getFirstChild(node){
		while (node.nodeType!=1) {
			node=node.nextSibling;
		}
		return node;
	}

	function marqueeUp() {
		if ( d <= c ) {
			var fc = getFirstChild( o.firstChild );
			var t = fc.cloneNode( true );
			o.removeChild( fc );
			o.appendChild( t );
			t.style.marginTop = "0px";
			c = 0;
		} else {
			c += 2;
			getFirstChild( o.firstChild ).style.marginTop = -c + "px";
			
		}
		timeid = window.setTimeout( function(){ marqueeUp(); }, 80 );
	}

	o.onmouseover = function() { clearTimeout( timeid ) };
	o.onmouseout = function() { marqueeUp(); };
	marqueeUp();
} )();
-->