$(document).ready(function() {
	$("a").click(function(e){
		if ( $(this).attr("rel") === '_blank' ) {
			e.preventDefault();
			window.open( $(this).attr("href"), 'NewWindow' );
		}
	});
	
	$(".showExhibitions").click(function(){
		//var Text = $(".showExhibitions").text();
		$(".hide").slideToggle("slow");
		if ( $('#show').is(':visible') ) {
			$('#show').hide();
			$('#hide').show();
		} else {
			$('#show').show();
			$('#hide').hide();
		}
//		if(Text == "Show previous exhibitions") {
//			$(".showExhibitions").text("Hide exhibitions");
//		} else {
//			$(".showExhibitions").text("Show previous exhibitions");
//		}
	});
	
	/*$(".mainmenu .menu1").click(function(e) {
		if()
		e.preventDefault();
		$("#left-menu .submenu").toggleClass("hidden");
	});*/
});
