 Beginning of JavaScript -

// rollover-animation
// Copyright by Peter Gehrig 
// All rights reserved
// http://www.24fun.com
// info@24fun.ch
// 12/8/1999

var x,y
var timer
var i_font size=0
var step=0
var thisx,thisy

function handlerMM(e){
	x = (document.layers) ? e.pageX : event.clientX
	y = (document.layers) ? e.pageY : event.clientY
}

function ringup() {
	if (document.all) {
		thisx = x
		thisy = y
		ringup2()
	}
}

function ringup2() {
	if (i_font size<=1530) {	
		document.all.ring.style.font size=i_font size
		document.all.ring.style.color="rgb(255,"+Math.floor(i_font size/6)+","+Math.floor(i_font size/6)+")"
    	document.all.ring.style.posLeft=thisx-(Math.floor(i_font size/3))
		document.all.ring.style.posTop=thisy-(Math.floor(i_font size/1.4))	
		step+=4
		i_font size+=step
		timer=setTimeout("ringup(2)",50)
	}
	else {
		clearTimeout(timer)
		i_font size=0
		step=0
		document.all.ring.style.posTop=-10000
	}
}

document.onmousemove = handlerMM;

// - End of JavaScript -


