$(document).ready(function() {
	$('a.itinerary_changer').bind('click', function(){
		$('#return_to_overview').show();
	});
});

function return_to_map_overview()
{
	$('div#other_content').hide();
	$('div#google_map_canvas').show();
	$('#return_to_overview').hide();
	zoom_to_area(map, marker_area);
	map.setMapType(G_PHYSICAL_MAP);

	$('div#button_area')
		.html('<a id="print_map_link" onclick="window.print();" href="javascript:"><img src="/images/itinerary/print_map.png" alt="print_map"></a>')
		.show();
}

function zoom_map(day, lat, lng)
{
	// Must show map before calling actions on it!
	$('div#other_content').hide();
	$('div#google_map_canvas').show();

	map.setCenter(new GLatLng(lat, lng), 13);
	map.setMapType(G_NORMAL_MAP);
	
	$('div#button_area')
		.html('<a id="print_map_link" onclick="window.print();" href="javascript:"><img src="/images/itinerary/print_map.png" alt="print_map"></a>')
		.show();
		
	$('table.itinerary_container tr').removeClass('highlight');
	$('table.itinerary_container tr#day_'+day).addClass('highlight');
}

function show_attractions(day, id)
{
	var portid = id.substring(5);
	$('div#other_content').load('/includes/async_call.php', {
			action: 'confirm_contents',
			portofcallid: portid,
			content_type: 'attractions',
			offer: offer_params
		}
	);
	$('#return_to_overview').show();
	$('div#google_map_canvas').hide();
	$('div#other_content').show();
	$('div#button_area').hide();

	$('table.itinerary_container tr').removeClass('highlight');
	$('table.itinerary_container tr#day_'+day).addClass('highlight');
	return false;
}

function show_description(day, id)
{
	var portid = id.substring(5);
	$('div#other_content').load('/includes/async_call.php', {
			action: 'confirm_contents',
			portofcallid: portid,
			content_type: 'port_description',
			offer: offer_params
		}
	);
	
	$('div#google_map_canvas').hide();
	$('div#other_content').show();
	$('div#button_area').hide();
	$('table.itinerary_container tr').removeClass('highlight');
	$('table.itinerary_container tr#day_'+day).addClass('highlight');
	
	return false;
}

