$(function(){
	
	$('#LogoStory').hide();

	$('#DisplayStory').click(function() {
		$('#LogoStory').slideToggle('normal');
		return false;
	});
	
	$('#HideStory a').click(function() {
		$('#LogoStory').slideUp('normal');
		return false;
	});

	$('a.email').each(function() {
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	
	$('#ContentOurSolution').hide();
	$('#ContentPresentation').hide();
	
	$('#WhereStand a').click( function() {
		$('#Menu a').removeClass('Selected');
		$(this).toggleClass('Selected');
		$('.ContentItem').hide();
		$('#ContentWhereStand').fadeIn();
		return false;
	});
	
	$('#OurSolution a').click( function() {
		$('#Menu a').removeClass('Selected');
		$(this).toggleClass('Selected');
		$('.ContentItem').hide();
		$('#ContentOurSolution').fadeIn();
		return false;
	});
	
	$('#Presentation a').click( function() {
		$('#Menu a').removeClass('Selected');
		$(this).toggleClass('Selected');
		$('.ContentItem').hide();
		$('#ContentPresentation').fadeIn();
		return false;
	});
	
	
});