function onOver(id){
	if(document.getElementById) {
		document.getElementById(id).style.backgroundPosition = '0 0px';
	}
}
function onOut(id){
	if(document.getElementById) {
		document.getElementById(id).style.backgroundPosition = '0 -40px';
	}
}

