$(document).ready(function(){

	// Change the location name based on the radio button selection on the contact form
	$("input[name='manager']").change(function(){
	    if ($("input[name='manager']:checked").val() == 'Buckhead') {
	        $("input[name='location'][value='Buckhead']").attr('checked', true);
	    } else if ($("input[name='manager']:checked").val() == 'Sandy Springs') {
	    	$("input[name='location'][value='Sandy Springs']").attr('checked', true);
	    } else if ($("input[name='manager']:checked").val() == 'Windward/Alpharetta') {
			$("input[name='location'][value='Alpharetta']").attr('checked', true);
	    } else if ($("input[name='manager']:checked").val() == 'Duluth') {
			$("input[name='location'][value='Duluth']").attr('checked', true);
		}
	});
						
});



$(function() {
	$('#referral_details').click(function(e) {
		e.preventDefault();
		$.nmManual('wp-content/themes/europeanmotorcars/referral_details.html','width=400','height=200');
	});
});
		   
