$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
$('#hardy').show();
$('#baker').hide();
$('#meadows').hide();
$('#livingston').hide();
$('#wright').hide();
$('#roush').hide();
$('#miller').hide();
$('#forester').hide();

var text = "";

$('a.hardy').click(function() {
	$('#hardy').fadeIn('fast');
	$('#baker').fadeOut('fast');
	$('#meadows').fadeOut('fast');
	$('#livingston').fadeOut('fast');
	$('#wright').fadeOut('fast');
	$('#roush').fadeOut('fast');
	$('#miller').fadeOut('fast');
	$('#forester').fadeOut('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
	return false;
	});
$('a.baker').click(function() {
	$('#hardy').fadeOut('fast');
	$('#baker').fadeIn('fast');
	$('#meadows').fadeOut('fast');
	$('#livingston').fadeOut('fast');
	$('#wright').fadeOut('fast');
	$('#roush').fadeOut('fast');
	$('#miller').fadeOut('fast');
	$('#forester').fadeOut('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
		return false;
	});
$('a.meadows').click(function() {
	$('#hardy').fadeOut('fast');
	$('#baker').fadeOut('fast');
	$('#meadows').fadeIn('fast');
	$('#livingston').fadeOut('fast');
	$('#wright').fadeOut('fast');
	$('#roush').fadeOut('fast');
	$('#miller').fadeOut('fast');
	$('#forester').fadeOut('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
		return false;
	});
$('a.livingston').click(function() {
	$('#hardy').fadeOut('fast');
	$('#baker').fadeOut('fast');
	$('#meadows').fadeOut('fast');
	$('#livingston').fadeIn('fast');
	$('#wright').fadeOut('fast');
	$('#roush').fadeOut('fast');
	$('#miller').fadeOut('fast');
	$('#forester').fadeOut('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
		return false;
	});
$('a.wright').click(function() {
	$('#hardy').fadeOut('fast');
	$('#baker').fadeOut('fast');
	$('#meadows').fadeOut('fast');
	$('#livingston').fadeOut('fast');
	$('#wright').fadeIn('fast');
	$('#roush').fadeOut('fast');
	$('#miller').fadeOut('fast');
	$('#forester').fadeOut('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
		return false;
	});
$('a.roush').click(function() {
	$('#hardy').fadeOut('fast');
	$('#baker').fadeOut('fast');
	$('#meadows').fadeOut('fast');
	$('#livingston').fadeOut('fast');
	$('#wright').fadeOut('fast');
	$('#roush').fadeIn('fast');
	$('#miller').fadeOut('fast');
	$('#forester').fadeOut('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
		return false;
	});
$('a.miller').click(function() {
	$('#hardy').fadeOut('fast');
	$('#baker').fadeOut('fast');
	$('#meadows').fadeOut('fast');
	$('#livingston').fadeOut('fast');
	$('#wright').fadeOut('fast');
	$('#roush').fadeOut('fast');
	$('#miller').fadeIn('fast');
	$('#forester').fadeOut('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
		return false;
	});
$('a.forester').click(function() {
	$('#hardy').fadeOut('fast');
	$('#baker').fadeOut('fast');
	$('#meadows').fadeOut('fast');
	$('#livingston').fadeOut('fast');
	$('#wright').fadeOut('fast');
	$('#roush').fadeOut('fast');
	$('#miller').fadeOut('fast');
	$('#forester').fadeIn('fast');
	$(".floorplansContainer a span").replaceWith($(".floorplansContainer a span").text());
		$(this).wrapInner("<span></span>");
		return false;
	});
});

