var ajax_data_tab_store = [];
var ajax_data_item_store = [];

function show_tab_content(type)
{
	var $ = jQuery;
	
	if(ajax_data_tab_store[type])
	{
		$('ol.tabs li').removeClass('active');
		$('ol.tabs li#'+type+'_tab').addClass('active');
		$('div.third_party div.info_pane').remove();
		$('div.third_party').append($(ajax_data_tab_store[type]));
			
		return false;
	}

	$.get('/booking/async_call.php', {action: 'brochure_content', type: type, basket_id: basket_id, offer_id: offer_id}, function(data){
		var type = ($(data).find('div.data div#type').text());
		ajax_data_tab_store[type] = $(data).children('div.content').children();
		
		$('ol.tabs li').removeClass('active');
		$('ol.tabs li#'+type+'_tab').addClass('active');
		$('div.third_party div.info_pane').remove();
		$('div.third_party').append($(ajax_data_tab_store[type]));
	});

	return false;
}

function show_item_content(type, item)
{
	var $ = jQuery;
	
	if(ajax_data_item_store[item])
	{
		$('div.third_party div.info_pane').remove();
		$('div.third_party').append($(ajax_data_item_store[item]));
		
		return false;
	}
		
	$.get('/booking/async_call.php', {action: 'brochure_content_item', type: type, item: item, basket_id: basket_id, offer_id: offer_id}, function(data){
		var item = ($(data).find('div.data div#item').text());
		ajax_data_item_store[item] = $(data).children('div.content').children();

		$('div.third_party div.info_pane').remove();
		$('div.third_party').append($(ajax_data_item_store[item]));
	});

	
	return false;
}

function load_tab_content(type)
{
	var $ = jQuery;
	
	if(ajax_data_tab_store[type])
	{
		return ajax_data_tab_store[type];
	}

	$.get('/booking/async_call.php', {action: 'brochure_content', type: type, basket_id: basket_id, offer_id: offer_id}, function(data){
		var type = ($(data).find('div.data div#type').text());
		ajax_data_tab_store[type] = $(data).children('div.content').children();
	});
}
