$(document).ready(function() {

$('body').append('<div id="tenn"></div>');
$('#tenn').css({position:'absolute',zIndex:'-1',top:'47%',left:'-145px',width:'145px',height:'72px',background:'url(/images/tennents.gif)'});
rndAnim();

});

function rndAnim() {
	rnd=20000+Math.floor(Math.random()*100000);
	//alert(rnd);
	setTimeout('aniTenn()',rnd);
}
function aniTenn() {
	$('html').css({overflow:'hidden'});
	$('#tenn').show().animate({left:'100%'},3000,'linear',function() {
		$('#tenn').hide().css({left:'-145px'});
		$('html').css({overflow:'auto'});
		rndAnim();
	});
}

