// set page width to new wider setting (for centering the large images)
tate_enlarge_content_width = 950;

$(document).ready(function() {
	var navisactive = false;
	$("#plan area, #explorenav li a").hover(function(){
		if (navisactive) {
		myRoom = $(this).attr("href");
		myRoom = myRoom.substr(0,(myRoom.length -5));
		myDiv = ".fade_" + myRoom;
		myNav = "#explorenav_" + myRoom + ' a';
		$(myNav).addClass('hover');
		$(myDiv).stop(true,true).fadeIn(300); }
	},function(){
		if (navisactive) {
		myRoom = $(this).attr("href");
		myRoom = myRoom.substr(0,(myRoom.length -5));
		myDiv = ".fade_" + myRoom;
		myNav = "#explorenav_" + myRoom + ' a';
		$(myNav).removeClass('hover');
		$(myDiv).stop(true,true).fadeOut(400); }
	});
	$("#plan, #explorenav").mouseenter(function(){navisactive = true;});
});
