var Navigation = {
	init: function()
	{
		Event.observe('residents', 'click', function(e) { Event.stop(e); this.blur(); Navigation.switchTo('residents'); });
		Event.observe('businesses', 'click', function(e) { Event.stop(e); this.blur(); Navigation.switchTo('businesses'); });
		Event.observe('tourism', 'click', function(e) { Event.stop(e); this.blur(); Navigation.switchTo('tourism'); });
		Event.observe('town', 'click', function(e) { Event.stop(e); this.blur(); Navigation.switchTo('town'); });
		//Event.observe('community', 'click', function(e) { Event.stop(e); this.blur(); Navigation.switchTo('community'); });
	},
	
	switchTo: function(type)
	{
		var els = $$('#quick_navigation li');
		for (var i = 0; i < els.length; i++)
			els[i].hide();
		
		var els = $$('#quick_navigation li.' + type);
		for (var i = 0; i < els.length; i++)
			els[i].show();
	}
}