
$(document).ready(function(){

	
	$(".close").click(function(){
		$(this).parent(".popup").fadeOut(500);
	})
	
})


function ShowMembership() {  
	$("#membership_container").fadeIn(500);
	$("#events_container").fadeOut(500);
	$("#conditions_container").fadeOut(500);
	$("#gallery_container").fadeOut(500);
	$("#intro_container").fadeOut(500);
	$("#parties_container").fadeOut(500);
}

function ShowEvents() {  
	$("#membership_container").fadeOut(500);
	$("#events_container").fadeIn(500);
	$("#conditions_container").fadeOut(500);
	$("#gallery_container").fadeOut(500);
	$("#intro_container").fadeOut(500);
	$("#parties_container").fadeOut(500);
}

function ShowConditions() {  
	$("#membership_container").fadeOut(500);
	$("#events_container").fadeOut(500);
	$("#conditions_container").fadeIn(500);
	$("#gallery_container").fadeOut(500);
	$("#intro_container").fadeOut(500);
	$("#parties_container").fadeOut(500);
}

function ShowGallery() {  
	$("#membership_container").fadeOut(500);
	$("#events_container").fadeOut(500);
	$("#conditions_container").fadeOut(500);
	$("#gallery_container").fadeIn(500);
	$("#intro_container").fadeOut(500);
	$("#parties_container").fadeOut(500);
}

function ShowIntro() {  
	$("#membership_container").fadeOut(500);
	$("#events_container").fadeOut(500);
	$("#conditions_container").fadeOut(500);
	$("#gallery_container").fadeOut(500);
	$("#intro_container").fadeIn(500);
	$("#parties_container").fadeOut(500);
}

function ShowParties() {  
	$("#membership_container").fadeOut(500);
	$("#events_container").fadeOut(500);
	$("#conditions_container").fadeOut(500);
	$("#gallery_container").fadeOut(500);
	$("#intro_container").fadeOut(500);
	$("#parties_container").fadeIn(500);
}

function ShowShare() {  
	$("#share_container").fadeIn(500);
}
