	$(function(){
			
			$("#main-photo-slider").codaSlider();
			
			$navthumb = $(".nav-thumb");
			$crosslink = $(".cross-link");
			
			$navthumb
			.click(function() {
				var $this = $(this);
				theInterval($this.parent().attr('href').slice(1) - 1);
				return false;
			});			
			//theInterval();
		});
		
		function showhide(floor){
			//alert("floor = "+floor);
			for(i=1;i<=6;i++){			
				if(i==floor){
					document.getElementById("floor"+i).style.display='';
					document.getElementById("arrow"+i).style.display='';
										
				}
				if(i!=floor){
					document.getElementById("floor"+i).style.display='none';
					document.getElementById("arrow"+i).style.display='none';
					
				}
			}
		}