$(document).ready(function(){
	var	popLinks = $('#footer a.link');
	popLinks.bind('click', function(e){
			e.preventDefault();
			var	target = $(this).attr('href');
			$('.shadow').fadeTo(400,0.5,function(){$(target).fadeIn(200);});					
		});
	$('.close').click(function(){$('.popup').fadeOut(400,function(){$('.shadow').fadeOut(400);});return false;});
	$('.shadow').click(function(){$('.popup').fadeOut(400,function(){$('.shadow').fadeOut(400);});return false;});			
});
