// JavaScript Document
window.addEvent('domready', function(){
	
	
	
	var fx2008 = new Fx.Slide('naviBox2008', { duration: 500, transition: Fx.Transitions.Quart.easeOut });
	var fx2007 = new Fx.Slide('naviBox2007', { duration: 500, transition: Fx.Transitions.Quart.easeOut });
	var fx2006 = new Fx.Slide('naviBox2006', { duration: 500, transition: Fx.Transitions.Quart.easeOut });
	
	
	
	
	var bodyId = $$('body')[0].id;
	if(
	   bodyId != 'exhibitions-0812' &&
	   bodyId != 'exhibitions-0811' &&
	   bodyId != 'exhibitions-0809' &&
	   bodyId != 'exhibitions-0806' &&
	   bodyId != 'exhibitions-0804' &&
	   bodyId != 'exhibitions-0802' &&
	   bodyId != 'exhibitions-0801' &&
	   bodyId != 'exhibitions-0711' &&
	   bodyId != 'exhibitions-0710' &&
	   bodyId != 'exhibitions-0708' &&
	   bodyId != 'exhibitions-0707' &&
	   bodyId != 'exhibitions-0706' &&
	   bodyId != 'exhibitions-0705' &&
	   bodyId != 'exhibitions-0703' &&
	   bodyId != 'exhibitions-0702' &&
	   bodyId != 'exhibitions-0612' &&
	   bodyId != 'exhibitions-0611'
	   ){
		fx2008.hide();
		fx2007.hide();
		fx2006.hide();
	}
	if(
	   bodyId == 'exhibitions-0812' ||
	   bodyId == 'exhibitions-0811' ||
	   bodyId == 'exhibitions-0809' ||
	   bodyId == 'exhibitions-0806' ||
	   bodyId == 'exhibitions-0804' ||
	   bodyId == 'exhibitions-0802' ||
	   bodyId == 'exhibitions-0801'
	   ){
		fx2008.hide();
	}
	if(
	   bodyId == 'exhibitions-0711' ||
	   bodyId == 'exhibitions-0710' ||
	   bodyId == 'exhibitions-0708' ||
	   bodyId == 'exhibitions-0707' ||
	   bodyId == 'exhibitions-0706' ||
	   bodyId == 'exhibitions-0705' ||
	   bodyId == 'exhibitions-0703' ||
	   bodyId == 'exhibitions-0702'
	   ){
		fx2007.hide();
	}
	
	if(
	   bodyId == 'exhibitions-0612' ||
	   bodyId == 'exhibitions-0611'
	   ){
		fx2006.hide();
	}
	
	
	
	
	
	$('naviSlide2008').addEvent('click', function(e){
		new Event(e).stop();
		fx2008.toggle();
	});
	
	$('naviSlide2007').addEvent('click', function(e){
		new Event(e).stop();
		fx2007.toggle();
	});
	
	$('naviSlide2006').addEvent('click', function(e){
		new Event(e).stop();
		fx2006.toggle();
	});
	
	



});