$(function(){
	$(".gallery .article a").click(function(){
		var newHtml = '<div id="overlay"><div><div><img src="' + this.href + '" /><a class="close" href="/gallery/">close image</a></div><div></div>';
		$("body").append($(newHtml));
		$("#overlay .close").click(function(){
			$("#overlay").remove();
			return false;
		});
		return false;
	})
});