$(document).ready(function(){
	hideSpiritSections();
	$('#spirit_together').show();
	$('#spirit_links a').click(function(){
		return showSpiritSection($(this));
	});
	$('div.spirit_section a').click(function(){
		return toggleSpiritInfo($(this).parent().parent())
	});
});

function hideSpiritSections() {
	$('div.spirit_section').hide();
}

function showSpiritSection(item) {
	id = item.attr('href').replace('#', '');
	
	hideSpiritSections();
	$('#' + id).show();
	
	return false;
}

function toggleSpiritInfo(item) {
	img = $('img', item);
	if (img.attr('src').match('images\/spirit\/together\.jpg'))  {
		img.attr('src', img.attr('src').replace('together.jpg', 'spirit_info.jpg'));
	} else {
		img.attr('src', img.attr('src').replace('spirit_info.jpg', 'together.jpg'));
	}		
	return false;
}
