function homeshow() {

	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;
	
	jQuery('#runbox div').each(function($) {
		var g = document.createElement('div');
		g.innerHTML = this.innerHTML;
		g.style.display='block';
		g.style.width = '100%';
		g.style.paddingLeft='240px';
		g.style.paddingTop ='130px';
		g.style.textAlign = 'left';
		k.appendChild(g);
	});
	k.className = 'sliderun';
	jQuery('#runbox').each(function($) {
		var h = jQuery(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');
		k.style.fontSize = h.css('font-size');

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

	window.setTimeout(function(){
		jQuery(k).cycle({
			fx: 'fade',
			delay: -1000,
			speed: 4000,
			cleartype: true,
			cleartypeNoBg: true
		});
	},10);

	return true;
}

