function init() {
	$('menu').childElements().each(function(item) {
		Event.observe(item, 'click', function() {
			location.href = item.down().href;
		});
	});
}
