/*$(function() {
	var posts = $(".post");
	posts.each(function() {
	   var links = $(this).find("a:has(img):not(.nolightbox))");
	   var entryId = $(this).attr("id");
	   links.attr("rel",entryId);
	   links.lightBox();
	});
});*/
$(function() {
	var posts = $(".post");
	posts.each(function() {
	   var links = $(this).find("a:has(img):not(.nolightbox)");
	   var entryId = $(this).attr("id");
	   links.attr("rel",entryId);
	   links.lightBox();
	});
});