LocalNav = Class.create();

LocalNav.prototype = {

	initialize: function(nav, item) {

		// get wrapper and selectors

		this.nav = $(nav);

		this.items = this.nav.getElementsByTagName(item);

		

		// create nodes

		for(var i=0, item; item=this.items[i]; i++) {

			item.title = '';

		}

	}

}



// local

Event.observe(window, 'load', function() { new LocalNav('localnav', 'a'); }, false);


