function homeshow() {
	$('#jsimg').cycle({
		fx: 'fade',
		speed: 4000,
		delay: -1000
	});

	var k = document.createElement('div');
	k.style.position = 'absolute';

	// this contortion "lifts" the element onto the toplevel so the cycle plugin's
	// "relative" hack will work correctly...
	var first = true;
	$('#runbox div').each(function() {
		var g = document.createElement('div');
		g.innerHTML = this.innerHTML;
		g.style.display='block';
		g.style.width = '100%';
		g.style.paddingLeft='80px';
		g.style.paddingTop ='6px';
		k.appendChild(g);
	});
	k.className = 'sliderun';
	$('#runbox').each(function() {
		var h = $(this);
		var o = h.offset();

		k.style.overflow = 'hidden';
		k.style.left = o.left+'px';
		k.style.top = o.top+'px';
		k.style.zIndex = '3001';
		k.style.width = h.outerWidth()+'px';
		k.style.height = h.outerHeight()+'px';
		k.style.color = h.css('color');
		k.style.fontStyle = h.css('font-style');
		k.style.fontSize = h.css('font-size');

		this.style.visibility = 'hidden';
		this.innerHTML='&nbsp;<br/>';
	});
	document.body.appendChild(k);

	window.setTimeout(function(){
		$(k).cycle({
			fx: 'scrollLeft',
			delay: -1000,
			speed: 4000
		});
	},10);

	return true;
}
