$(document).ready(function() {
	
	$("#tellAFriendOverlayer").click(function() {
		$.include('jquery/jquery.layerContent.js', function() {
			window.setTimeout(function() {
				$.loadContent($("#tellAFriendOverlayerContent").attr("rel"), null, null, true);
			}, 1000);
			return false;
		});
	});
	
});