
$(document).ready(function() {
	
	/*** hack for choose location pop up in IE ***/
	if (window.PIE && $.browser.msie) {
			
		$(this).find('.outer-choose-location-pop-up').each(function() {
			PIE.attach(this);	
		});
		$(document).find('.inner-choose-location-pop-up').each(function() {
			PIE.attach(this);	
		});
	}
	
	/*** choose a location pop up ***/
	$('.choose-location').click(function(e) {
		e.preventDefault();
		
		$(this).parents('.ready-for-immediate-move-in').find('.outer-choose-location-pop-up').show(0, function() {
			var outer_container = this;
				
			$.get('/ready-set-move/location-select-flyout',
				null,
				function(html_results) {			
					$(outer_container).find('#choose-location-menu-content').html(html_results);
				}
			);
			
		});
				
	});
	$('.inner-choose-location-pop-up .close-button').click(function(e) {
		e.preventDefault();
		
		$(this).parents('.outer-choose-location-pop-up').hide();
	});
	/*** /choose a location pop up ***/
	
});

