/*

<iframe width="399" height="225" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=114164081204312644178.00046450437579774e9c3&amp;ll=43.711316,-103.613434&amp;spn=0.055837,0.136986&amp;z=12&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=114164081204312644178.00046450437579774e9c3&amp;ll=43.711316,-103.613434&amp;spn=0.055837,0.136986&amp;z=12&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>

*/


function showMap(mapID) {
	var map = mapconfig[mapID];
	if(map == null)
		return;
	
	var mapDiv = $('#mapdiv');
	var mapDesc = $('#mapdesc');
	var mapLink = $('#maplink');
	
	var html = '<iframe width="399" height="225" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="' + map.map + '"></iframe>';
	
	mapDiv.html(html);
	mapDesc.html(map.text);
	mapLink.attr('href', map.link);
}

$(document).ready(function() {
	showMap('lodging');
});


