function lien_over(src)
	{ 
		if (!src.contains(event.fromElement)) 
		{ 
			src.style.cursor = 'hand';
			src.children.tags('A')[0].style.color= 'yellow';
    }
	}

function lien_out(src) 
	{ 
		if (!src.contains(event.toElement)) 
		{ 
			src.style.cursor = 'default';
			src.children.tags('A')[0].style.color= '';
		}
	}

function lien_clicked(src) 
	{ 
			src.children.tags('A')[0].click();
	}