window.addEvent('domready',function(){

	// external links
	$$('a.ext').addEvent('click',function(){
		window.open(this.href);
		return false;
	});

	// squeezebox
	SqueezeBox.assign($$('a.sothis-admin-action'),{
		handler:'iframe',
		size:{
			x:640,
			y:480
		}
	});

	// navi
	$$('#navi li').set('html','');
	$$('#navi li.active').addEvents({
		'click':function(){
			this.removeClass('hover');
			this.addClass('active');
			window.location='/'+this.get('title').toLowerCase();
		},
		'mouseout':function(){
			this.removeClass('hover');
			this.addClass('active');
		},
		'mouseover':function(){
			this.removeClass('active');
			this.addClass('hover');
		}
	});
	$$('#navi li.normal').addEvents({
		'click':function(){
			this.removeClass('normal');
			this.removeClass('hover');
			this.addClass('active');
			window.location='/'+this.get('title').toLowerCase();
		},
		'mouseout':function(){
			this.removeClass('hover');
			this.removeClass('active');
			this.addClass('normal');
		},
		'mouseover':function(){
			this.removeClass('normal');
			this.removeClass('active');
			this.addClass('hover');
		}
	});

});
