$(document).ready(function() {
	$("#find_activites_link").click(function () {
		$('#how_to_start_nav li span').removeClass('active');
		$("#find_activites_link").addClass('active');
		$('.item_holder').hide();
		$('#find_howtostart').show();
	});
	$("#signup_link").click(function () {
		$('#how_to_start_nav li span').removeClass('active');
		$("#signup_link").addClass('active');
		$('.item_holder').hide();
		$('#signup_howtostart').show();
	});
	$("#organize_link").click(function () {
		$('#how_to_start_nav li span').removeClass('active');
		$("#organize_link").addClass('active');
		$('.item_holder').hide();
		$('#organize_howtostart').show();
	});
	$("#providers_link").click(function () {
		$('#how_to_start_nav li span').removeClass('active');
		$("#providers_link").addClass('active');
		$('.item_holder').hide();
		$('#provider_howtostart').show();
	});
});