//—Copyright (c) 2007 wollzelle GmbH, (http://www.wollzelle.com). All Rights Reserved.

var Menu = {
  indicate: function(section) {
    $('active_item_indicator').show();
    $$('div#navigation a.active').invoke('removeClassName', 'active');
    var active = $('menu_'+section);
    active.addClassName('active');
    var left = Prototype.Browser.IE ? active.offsetParent.offsetLeft : active.offsetLeft;
    var width = active.offsetWidth;
    $('active_item_indicator').morph('left:'+left+'px; width:'+width+'px;', {duration:0.7});  
  },
  hideIndicator: function() {
    $$('div#navigation a.active').invoke('removeClassName', 'active');
    $('active_item_indicator').hide();
  },

	selectLightboxSection: function(event, section) {
		//if(event) Event.stop(event);
		
		Site.showLightboxSection(section);
		this.indicate(section);
	},
	
	selectContentSection: function(event, section) {
		//if(event) Event.stop(event);
		
		this.indicate(section);
		Site.showContentSection(section);
	}
}