function ajaxFunction(item, id)
{
	var $ = jQuery;
	
	// If this tab is already explanded, close it.
	if( $('#div_' + id+':visible').length > 0 )
	{
		$('#div_' + id ).hide();		
		$('a#a_' + id).css({ background: "#EC9426 url(../images/search_results/view-cabin-details-bg.gif) no-repeat top left" }).text('View Details');
		return;
	}
	
	// Show ajax spinner image.
	$('a#a_' + id).css({ background: "#FFF url('../images/ajax/ajax-loader.gif') no-repeat center center" }).text('');
	
	// Get cabin data and display.
	$.get(item, function(data)
	{
		$('#'+id).html( data );
		$('#div_' + id).show();	
		$('a#a_' + id).css({ background: "#EC9426 url(../images/search_results/view-cabin-details-bg.gif) no-repeat bottom left" }).text('Hide Details');
	});
}

jQuery(document).ready(function(){
	jQuery(".fare_breakdown_link")
		.click(function(e){
			e.preventDefault();
		})
		.each(function(){
			jQuery(this).simpletip({
				content: jQuery(this).next('.fare_breakdown').html()
			});
		}
	);
});

