Event.observe(window, "load", function(){
	$$("#roadsafety-pub-index-default-menu-icons div").each(function(eDiv){
		eDiv.observe("click", function(event){
			event.stop();
			if( this.id )
				window.location = "index.php"+this.id;
		});
	});
});