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

	$('current-link').addEvent('click', function(current) {
						current = new Event(current);
						current.stop();
						$('current-exh').setStyle('display', '');
						$('upcoming-exh').setStyle('display', 'none');
						$('past-exh').setStyle('display', 'none');
						$('the-gallery').setStyle('display', 'none');

	});
	
	$('upcoming-link').addEvent('click', function(upcoming) {
						upcoming = new Event(upcoming);
						upcoming.stop();
						$('current-exh').setStyle('display', 'none');
						$('upcoming-exh').setStyle('display', '');
						$('past-exh').setStyle('display', 'none');
						$('the-gallery').setStyle('display', 'none');

	});
	
	$('past-link').addEvent('click', function(past) {
						past = new Event(past);
						past.stop();
						$('current-exh').setStyle('display', 'none');
						$('upcoming-exh').setStyle('display', 'none');
						$('past-exh').setStyle('display', '');
						$('the-gallery').setStyle('display', 'none');

	});
	
		
	$('the-gallery-link').addEvent('click', function(gallery) {
						gallery = new Event(gallery);
						gallery.stop();
						$('current-exh').setStyle('display', 'none');
						$('upcoming-exh').setStyle('display', 'none');
						$('past-exh').setStyle('display', 'none');
						$('the-gallery').setStyle('display', '');

	});
	
});
