$(function(){
	var $floorLayers = $('div.apartmentLayer, div.cottagesLayer');
	
	/* $floorLayers.hide().filter(':first').show(); */
	
	$('div.floorTypeNav a').click(function (){
		$floorLayers.hide();
		$floorLayers.filter(this.hash).show();
		$('div.floorTypeNav a').parent().removeClass('selected');
		$(this).parent().addClass('selected');
		
		return false;
	}).filter(':first').click(0);
});