$(document).ready(function()
{
	// Form submit
	$('.contact-form .db_button').attr('href', 'javascript:void(0);').click(function(){ $(this).parent('form').submit(); });

	// Map Zoom Dialog
	if ( $('.map_small').size() ) {
		$('.map_small').each(function() {
			var big = $(this).parents('.contact-block').next();
			if(big.is('.map_dialog')) {
				big.dialog({
					autoOpen: false,
					stack: false,
					modal: true,
					width: 575,
					//height: 490,
					resizable: false
				});
				$(this).click(function(){ big.dialog('open'); });
			}
		});
	}
});
