window.addEvent('domready', function(){
/*
var navigatorMenu = new Openmoomenu('ul.nav', {
														 delay: 500,
															animate: {
																props: ['opacity', 'width', 'height'],
																options: {
																	duration: 700,
																	fps: 100,
																	transition: 'expo:out'
																}
															}
														});
*/
	$$('#horiznav a').addEvent('click', function(e) {
	e.stop();
	
	$$('#horiznav .active').removeClass('active');
	this.set('class', 'active');

	$(this.get('name')).load(this.get('href'));

});				
					
}); //AddEvent End
