function rappelContexte() {

	var anchors = $A($("menu2").getElementsByTagName("a"));

	anchors.each( function(a) {
		if( document.location.href == a.href ) {
			Element.addClassName(a ,"selected");
		}
	} );

}

Event.observe( window , 'load', rappelContexte, false);

function email() {

}