$(document).ready(function() {
	
	
	$("#floor-nav li a").click(function(){
		var _target = $(this).attr("href").replace("#","");
		//hide current content
		$("#floor-nav li a").removeClass("active");
		$(this).addClass("active");
		$(".floor .flash-container img, .floor #content .floor-content").hide().removeClass("active");
		$("#floor-image"+_target).fadeIn(2000, function(){
			$(this).addClass("active");
		});
		$(".floor #content #floor-plan"+_target).addClass("active").fadeIn(2000);
	})
	
});

/* sIFR configuration
----------------------------------------------------------------------------------------------------------------------------------- */

var bickham = { src: 'assets/flash/bickham.swf' };
var helvetica = { src: 'assets/flash/helvetica.swf' };

sIFR.activate(bickham, helvetica);

sIFR.replace(bickham, {
      selector: '#content h1'
      ,css: {
        '.sIFR-root': { 'color': '#2a292a', 'font-size': '31px', 'text-transform': 'lowercase'}
      }
      ,wmode: 'transparent'
    });


