$(function(){
	
	$("#map").googleMap({
	    start: '#start', //Must have the #
	    end: '#end', //Must have the #
		center: '2700 Falls Avenue Waterloo, Iowa 50701', //Must have the #
	    submit: '#getdirections', //Must have the #
	    directions: 'directions', //Can NOT have the #
		zoomLevel: 14
	}).load();
	
	$("#map2").googleMap({
	    start: '#start2', //Must have the #
	    end: '#end2', //Must have the #
		center: '4701 J Street, SW Cedar Rapids, IA 52404', //Must have the #
	    submit: '#getdirections2', //Must have the #
	    directions: 'directions2', //Can NOT have the #
		zoomLevel: 14
	}).load();

});

