jQuery(document).ready(function()
{
	jQuery('.modal').dialog({
		width:820,
		modal: true,
		autoOpen: false
	});
	
	jQuery(".details-residences").click(function()
	{
		var $iframe = jQuery('<iframe>')
			.attr('src', jQuery(this).attr('href'))
			.attr('width', '600')
			.attr('height', '450')
			.attr('frameBorder', '0')
			.attr('frameSpacing', '0')
			.attr('border', '0')
			.attr('scrolling', 'no')
			.attr('allowTransparency', 'allowtransparency')
			.attr('style', 'margin:0');
			
		jQuery('.modal').html($iframe);
		jQuery('.modal').dialog('option', 'title', jQuery(this).html());
		jQuery('.modal').dialog('open');
		return false;
	});
});
