$(document).ready(function()
{
	// Form submit
	$('.contact-form .db_button').attr('href', 'javascript:void(0);').click(function(){ $(this).parent('form').submit(); });			
	
	$("#ifyouare_options").change(function() {		
		if($(this).val() == "Other") {			
			$(".ifyouare_options").parent("div").show();		
		}else {			
			$(".ifyouare_options").parent("div").hide();		
		}	
	});
	

	// 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'); });
			}
		});
	}
});
