(function(){

window.toggleSearchResultsMap = function(){
	// adding this class to body allows us to move elements 
	// of the page about to fit the map in
	$('body').toggleClass('mapShow');
	
	// just show the generic search results map
	NewMind.tourism.loadGenericSearchResultsMap('mapView');
};

$(document).ready(function(){
	
	$('h1').after('<div id="mapContainer"><div id="mapView"><div id="mapFilters"><h3>Search Filters</h3></div></div><div id="mapWidgetContainer"></div></div><a href="" id="mapShowHideLink">Show / Hide Map</a>');

	$('#mapShowHideLink').click(function(){
		toggleSearchResultsMap();
		return false;
	});
	
	if(window.location.search.indexOf('autoshowmap') > -1) {
		toggleSearchResultsMap();
	}
	
});

})();