"); } } }); } if (window.innerWidth && window.innerWidth 1) { var map = $.grep(onlineLeasingUrls, function (s) { return s.IsSelectedSite == true; }); partnerPropertyId = map[0].PartnerPropertyId; selectedLeasingUrl = map[0].Url; } else { partnerPropertyId = onlineLeasingUrls[0].PartnerPropertyId; selectedLeasingUrl = onlineLeasingUrls[0].Url; } selectedBed = getParameterByName('beds'); if (selectedBed == '') selectedBed = "all"; selectedBath = getParameterByName('baths'); if (selectedBath == '') selectedBath = "all"; f_setBedBathActiveFilter(); $('#beds_selector li a').click(function(e){ selectedBed = $(this).data('beds'); $('#beds_selector li.active').removeClass('active'); $(this).parent().addClass('active'); $('#dropBeds .dropdown-selected-beds').html(selectedBed ? selectedBed + ' Beds' : 'All Beds'); f_setInitialUnitsData(); f_filterFloorplans(); f_HandleNoUnitsFloorplans(); f_unitShowHide(e); return false; }); $('#baths_selector li a').click(function(e){ selectedBath = $(this).data('baths'); //$(e).attr('selected', 'selected'); $('#baths_selector li.active').removeClass('active'); $(this).parent().addClass('active'); f_updateFilterMore(); f_setInitialUnitsData(); f_filterFloorplans(); f_HandleNoUnitsFloorplans(); f_unitShowHide(e); return false; }); f_setLeasingUrls(); var moveInDate = new Date(); var moveInQParam = getParameterByName('moveindate'); if (moveInQParam) moveInDate = (internationalProperty == 'true' ? $.datepicker.parseDate('dd/mm/yy', moveInQParam) : $.datepicker.parseDate('mm/dd/yy', moveInQParam)); f_getUnits($.datepicker.formatDate('yy-mm-dd', moveInDate)); f_buildFlexSlider(); $('.unit-show-hide').on('click', function(e) { f_unitShowHide(e); }); if (hideFloorplansPricing.toLowerCase() != 'true') { var minRentQParam = getParameterByName('minrent'); var maxRentQParam = getParameterByName('maxrent'); if(minRentQParam){ isRentSliderModified = true; minRentQParam = Number(minRentQParam); minRentQParam = Math.max(minRentQParam, minimumRent); if (minRentQParam > maximumRent) minRentQParam = maximumRent; } else minRentQParam = minimumRent; if(maxRentQParam){ isRentSliderModified = true; maxRentQParam = Number(maxRentQParam); if (maxRentQParam maximumRent) maxRentQParam = maximumRent; } else maxRentQParam = maximumRent; $(document).on('keydown', '.rent-filter', function(e) { if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 || (e.keyCode == 65 && ( e.ctrlKey === true || e.metaKey === true ) ) || (e.keyCode >= 35 && e.keyCode 57)) && (e.keyCode 105)) { e.preventDefault(); $('.nan-entered').parent().removeClass('show-rent-tooltip'); $('.nan-entered').removeClass('nan-entered'); $(this).addClass('nan-entered'); $(this).parent().addClass('show-rent-tooltip'); } else { $(this).removeClass('nan-entered'); $(this).parent().removeClass('show-rent-tooltip'); } }); $(document).on('keyup', '.rent-filter', function(e) { $(this).val(commaSeparateNumber($(this).val().replace(/,/g,''))); if ($(this).val() != '') { $(this).val(function(i, val) { var regexp = new RegExp("\^\\s*(\?!\\" + currencySymbol + ")"); return val.replace(regexp, currencySymbol); }); } minimumRent = ($('.txt-min-rent').val() == '' ? 0 : parseInt($('.txt-min-rent').val().substring(1).replace(/,/g,''))); maximumRent = ($('.txt-max-rent').val() == '' ? maximumRent : parseInt($('.txt-max-rent').val().substring(1).replace(/,/g,''))); f_rentTextChanged(minimumRent, maximumRent); f_unitShowHide(e); }); } if ($("#floorSlider").length > 0 ) { var minFloorQParam = getParameterByName('minfloor'); var maxFloorQParam = getParameterByName('maxfloor'); if (minFloorQParam) { isFloorSliderModified = true; minFloorQParam = Number(minFloorQParam); } else minFloorQParam = minFloor; if (maxFloorQParam) { isFloorSliderModified = true; maxFloorQParam = Number(maxFloorQParam); } else maxFloorQParam = maxFloor; $("#floorSlider").slider({ range: true, step: 1, min: minFloor, max: maxFloor, values: [minFloorQParam, maxFloorQParam], change: function(e,u) { f_floorSliderChanged(e,u); f_updateFilterMore(); } }); $('.floor_range').html('(' + minFloorQParam + ' - ' + maxFloorQParam + ')'); } $('#datepicker').datepicker({ autoHide: true, dateFormat: (internationalProperty == 'true' ? "dd/mm/yyyy" :"mm/dd/yyyy"), startDate: new Date(), endDate: (maxMoveInDateDays > 0 ? maxMoveInDate : null) }); $('#datepicker').on('pick.datepicker', function (e) { var pickedDate = $('#datepicker').datepicker('formatDate', e.date); f_moveInDateChanged(pickedDate.toString()); }); $('#datepicker').val($.datepicker.formatDate((internationalProperty == 'true' ? "dd/mm/yy" :"mm/dd/yy"), moveInDate)); switch(defaultSortOption) { case 1: f_sortFloorplans('name'); break; case 2: f_sortFloorplans('sqft'); break; case 0: default: (hideFloorplansPricing == "true" || studentProperty == "true" || (minimumRent == "0" && (maximumRent == "0" || maximumRent == "50")) ? f_sortFloorplans('name') : f_sortFloorplans('rent')); break; } $('.dropdown-more select').click(function(e) { e.stopPropagation(); }); $('#checkboxShowAvailableOnly').change(function(){ f_showAvailableOnly($(this).is(":checked")); f_updateFilterMore(); }); $(".tooltip-effect").tooltip({ position: { my: "center bottom-10", at: "center top", using: function (position, feedback) { $(this).css(position); $("
") .addClass("arrow") .addClass(feedback.vertical) .addClass(feedback.horizontal) .appendTo(this); } } }); $(".read-more-fp").each(function() { if ($(this).text().length > 185) { $(this).expander({ slicePoint: 185, expandSpeed: 200, collapseSpeed: 200, expandText: 'Read More', userCollapseText: 'Show Less -', expandEffect: 'fadeIn', collapseEffect: 'fadeOut', moreClass:'read-more-fp', lessClass:'read-less-fp' }); } }); $('#dialog-overlay').on('click', function () { f_hideFloorPlanModals(); }); $('.dropdown-menu').click(function(event) { event.stopPropagation(); }); var availabilityParam = getParameterByName('availability'); if (availabilityParam) $('input[value="' + availabilityParam + '"]').attr('checked', 'checked'); var flexParam = getParameterByName('flexdays'); if (flexParam) $('#flex-days').val(flexParam); $('input[name="availability"]').change(function() { f_setInitialUnitsData(); }); $('#flex-days').change(function() { f_setInitialUnitsData(); }); $('#videoDisplayList').on("click", "li", function (e, isFirstTimePlay) { var index = $(this).data("index"); $('#videoDisplayList li').removeClass('selected'); $(this).addClass('selected'); var videoObj = selectedFPVideos[index]; $('#videoDisplayContainer iframe').attr('src',videoObj.src); $('#videoCaption').html(videoObj.caption); if (!isFirstTimePlay) f_analyticsSendEvent('floorplans', 'click-floorplan-video-link', selectedFPName + '-' + videoObj.mediaId); }); f_updateFilterMore(); if (window.innerWidth && window.innerWidth 1.5 ) { current.width = current.width / pixelRatio; current.height = current.height / pixelRatio; } } }); $('#dropSort a.fp-dropdown-toggle').click(function() { if ($('#dropSort').hasClass('open')) $('#dropSort').removeClass('open'); else $('#dropSort').addClass('open'); $('body').click(function(event) { var $target = $(event.target); if ($target.parents('#dropSort').length == 0) { $('#dropSort').removeClass('open'); } }); }); $('#buildingFilter a.fp-dropdown-toggle').click(function() { if ($('#buildingFilter').hasClass('open')) $('#buildingFilter').removeClass('open'); else $('#buildingFilter').addClass('open'); $('body').click(function(event) { var $target = $(event.target); if ($target.parents('#buildingFilter').length == 0) { $('#buildingFilter').removeClass('open'); } }); }); $('a.fp-lease-toggle').click(function () { if ($('.fp3-drop-lease-terms').hasClass('open')) $('.fp3-drop-lease-terms').removeClass('open'); else $('.fp3-drop-lease-terms').addClass('open'); $('body').click(function (event) { var $target = $(event.target); if ($target.parents('.fp3-drop-lease-terms').length == 0) { $('.fp3-drop-lease-terms').removeClass('open'); } }); }); }); function f_updateUnitPanelPositioning(fpTop) { var containerHeight = $('#floorplan-container').outerHeight(); var panelHeight = $('#unitInfoPanel').outerHeight(); var contAreaBtm = $('#floorplan-body').offset().top + $('#floorplan-body').outerHeight(true); if (panelHeight == containerHeight) { $('#unitInfoPanel').css({ top: "0px", left: "70%", }); } else if((fpTop + $('#unitInfoPanel').outerHeight(true)) > (contAreaBtm)) { fpTop -= ((fpTop + $('#unitInfoPanel').outerHeight(true)) - (contAreaBtm)); $('#unitInfoPanel').css({ top: fpTop - $('#floorplan-body').offset().top, left: "70%", }); } else { $('#unitInfoPanel').css({ top: fpTop - $('#floorplan-body').offset().top, left: "70%", }); } } function f_updateFilterMore() { var count = 0; if ($('#baths_selector').val()) count++; if ($("#floorSlider").length > 0) { var currentValues = $('#floorSlider').slider('option', 'values'); if (currentValues[0] != $('#floorSlider').slider('option', 'min') || currentValues[1] != $('#floorSlider').slider('option', 'max')) count++; } if ($('#checkboxShowAvailableOnly').is(':checked')) count++; $('.dropdown-more-text').html('More' + ((count > 0) ? ' (' + count + ')' : '')); } function f_setExternalFilters(params){ selectedBed = params.beds; selectedBath = params.baths; f_setBedBathActiveFilter(); if (params.moveInDate){ $('#datepicker').datepicker("option", "date", params.moveInDate); $('#datepicker').val(params.moveInDate); } f_updateFilterMore(); f_moveInDateChanged($('#datepicker').val()); } function f_setBedBathActiveFilter() { $('#beds_selector li').removeClass('active'); $('#baths_selector li').removeClass('active'); if (selectedBed) $('#beds_selector li a[data-beds="' + selectedBed + '"]').parent().addClass('active'); else $('#beds_selector li').first().addClass('active'); if (selectedBath) $('#baths_selector li a[data-baths="' + selectedBath + '"]').parent().addClass('active'); else $('#baths_selector li').first().addClass('active'); } function f_switchWidgets() { var url = ''; if (!getParameterByName('tab')) url += '?tab=true&'; else url += '?'; if (selectedBed && !isNaN(selectedBed)) url += 'beds=' + selectedBed + '&'; if (selectedBath && !isNaN(selectedBath)) url += 'baths=' + selectedBath + '&'; if (getParameterByName('availability')) url += 'availability=' + getParameterByName('availability') + '&'; if (getParameterByName('flexdays')) url += 'flexdays=' + getParameterByName('flexdays') + '&'; url += 'moveindate=' + $('#datepicker').val() + '&'; if (hidePrices.toLowerCase() != 'true' && isRentSliderModified) { url += 'minrent=' + $('#rentSlider').slider( "option", "values")[0] + '&'; url += 'maxrent=' + $('#rentSlider').slider( "option", "values")[1] + '&'; } if ($("#floorSlider").length > 0 && isFloorSliderModified) { url += 'minfloor=' + $('#floorSlider').slider("option", "values")[0] + '&'; url += 'maxfloor=' + $('#floorSlider').slider("option", "values")[1] + '&'; } url = url.substring(0, url.length - 1); window.location.href = url; } function f_showSaveQuoteDialog() { $("#save-quote-overlay").show(); $("#save-quote-lightbox").fadeIn(300); } function f_hideSaveQuoteDialog() { $('#page_fp_success_message').hide(); $("#save-quote-overlay").hide(); $("#save-quote-lightbox").fadeOut(300); } function f_showVideoPlayer(floorPlanId, floorPlanName) { $("#dialog-overlay").show(); $('#floorplan-video-viewer').fadeIn(300); var listHTML = ''; selectedFPVideos = fpVideos[floorPlanId]; $(selectedFPVideos).each(function (index, fpv) { listHTML += ''; }); $('#videoDisplayList').html(listHTML); selectedFPName = floorPlanName; f_analyticsSendEvent('floorplans', 'click-floorplan-video-modal', selectedFPName); $('#videoDisplayList li:first').trigger('click', [true]); } function f_sendImageClickEvent(mediaId) { f_analyticsSendEvent('floorplans', 'click-floorplan-image', mediaId); } function f_showMediaPlayer(floorPlanId, floorPlanName) { selectedFPPanoramaSrc = fpMedia[floorPlanId][0].src; selectedFPPanoramaId = fpMedia[floorPlanId][0].mediaId; f_analyticsSendEvent('floorplans', 'click-floorplan-panoramic', floorPlanName + '-' + selectedFPPanoramaId); var isIeLessThan10 = navigator.appVersion.indexOf("MSIE 9") > -1 || navigator.appVersion.indexOf("MSIE 8") > -1; if (isIeLessThan10 || (window.innerWidth && window.innerWidth ').appendTo('#mediaDisplayContainer'); $('#mediaDisplayContainer iframe').css('height', (window.innerHeight ? (window.innerHeight * 0.80) : 500)); $('#mediaDisplayContainer iframe').attr('src', selectedFPPanoramaSrc); $('#floorplan-media-viewer').fadeIn(300); } $('.virtual-unit-info-panel').html($('#unitInfoPanel').html()); $('.unit-list-fp-header').html('
' + floorPlanName + '
×
' + '
Choose an available unit below.
'); $('.virtual-unit-info-panel .button_2').on('click', function(e) { f_analyticsSendEvent('floorplans', 'click-floorplan-panoramic-lease', floorPlanName); }); $('.virtual-unit-info-panel').hide(); $('.virtual-unit-info-panel .par-units').hide(); $('#floorplan-media-viewer #par_' + floorPlanId).show(); $('.see-available-units').off('click'); $('#floorplan-media-viewer').removeClass('unit-panel-open'); if ($('#floorplan-media-viewer #par_' + floorPlanId + ' .unit-container').length '); $('.see-available-units').on('click', function(e) { window.location.href = thirdPartyContactUrl ? thirdPartyContactUrl : 'Contact.aspx'; }); } else { $('.see-available-units').html('See Available Units'); $('.see-available-units').on('click', function(e) { f_showHideVtUnitPanel(); }); } } function f_expandMedia() { var url = $('#mediaDisplayContainer iframe').attr('src'); window.open(url, '_blank'); } function f_hideFloorPlanModals() { f_hideRichMediaViewer(); $("#dialog-overlay").hide(); $('#floorplan-zoom').hide(); $('#fp-zoom').flexslider("destroy"); $('.flex-zoom').remove(); $('.amenity-popup-lightbox').fadeOut(300); $('#videoDisplayContainer iframe').attr('src',''); //stop video $('#mediaDisplayContainer object').attr('data',''); //clear 3d pano $('#floorplan-video-viewer').fadeOut(300); $('#floorplan-media-viewer').fadeOut(300); $('#movein-date-dialog').hide(); }
Available Floor plans meet your search criteria
  • A1: Beds - 1: Baths - 1: SqFt Range - 480 to 480
  • A1: Beds - 1: Baths - 1: SqFt Range - 480 to 480
  • A1: Beds - 1: Baths - 1: SqFt Range - 480 to 480

A1

Beds: 1, Baths: 1, SQFT: 480

Loading...
  • A2: Beds - 1: Baths - 1: SqFt Range - 608 to 608
  • A2: Beds - 1: Baths - 1: SqFt Range - 608 to 608
  • A2: Beds - 1: Baths - 1: SqFt Range - 608 to 608

A2

Beds: 1, Baths: 1, SQFT: 608

Loading...
  • A3: Beds - 1: Baths - 1: SqFt Range - 744 to 744
  • A3: Beds - 1: Baths - 1: SqFt Range - 744 to 744
  • A3: Beds - 1: Baths - 1: SqFt Range - 744 to 744

A3

Beds: 1, Baths: 1, SQFT: 744

Loading...
  • B1: Beds - 2: Baths - 1: SqFt Range - 886 to 886
  • B1: Beds - 2: Baths - 1: SqFt Range - 886 to 886
  • B1: Beds - 2: Baths - 1: SqFt Range - 886 to 886

B1

Beds: 2, Baths: 1, SQFT: 886

Loading...
  • B2: Beds - 2: Baths - 2: SqFt Range - 866 to 866
  • B2: Beds - 2: Baths - 2: SqFt Range - 866 to 866
  • B2: Beds - 2: Baths - 2: SqFt Range - 866 to 866

B2

Beds: 2, Baths: 2, SQFT: 942

Loading...
  • 3 Thousand One Crystal Springs - B3 - 2 bed - 2 bath - 1081 sf
  • 3 Thousand One Crystal Springs - B3 - 2 bed - 2 bath - 1081 sf
  • 3 Thousand One Crystal Springs - B3 - 2 bed - 2 bath - 1081 sf

B3

Beds: 2, Baths: 2, SQFT: 1,081

Loading...
Lock in your Quote!
Quote Details
Floor plan:
Unit:
Bedrooms:
Bathrooms:
Sqft:
Move-in date:
Lease Terms
Contact Information
 *
 *
 *
 *

* Required Fields


×

Inquiry sent successfully!

Back to Website
Full Screen
Rich Media Viewer by
3D
2D
Virtual Panoramic
Furniture Arranger
Close
Renderings are intended only as a general reference. Features, materials, Finishes and layout of units may be differemt that show, For more details , inquire ask a leasing representative about specific apartment features.

Ready to Take a Tour?


Contact Us


Specials Offers


Please call our leasing office for specials.

This site is in no way affiliated with or endorsed by specified business. It exists as a compendium of supporting information intended for informational purposes only. If you want to buy this website, please don't hesitate to contact us via e-mail: "d e n a c c 9 7 7 (at) g m a i l (dot) c o m" (delete spaces) or you can find and buy it on Afternic domain auctions.