// JavaScript Document

$(function(){
	
	$('.layerLink').click(function() {
		$('.layerPop').fadeOut('fast');
		var layerId = $(this).text();
		$('#'+layerId).fadeIn('slow');
	});
	
	$('.layerPopClose').click(function() {
		$('.layerPop').fadeOut('fast');
	});

});

