$(document).ready(function(){
	
	//For each gallery item (li) that contains a link
	//Show item and wrap link around image
	
	$("#gallery_index li:has(a)").each(function(){
		$(this).show();
		var link = $("a", this).attr('href');
		$("img", this).wrap('<a href="'+link+'"></a>');
	});
	
});

// $(function() {
// 	
// 	$("#gallery_index li").each(function(){
// 		if(Boolean($(this).find("h4 a").length)){
// 			$(this).show();
// 			$(this).children("a:first").attr("href", $(this).find("h4 a").attr("href"));
// 		}else{
// 			$(this).remove();
// 		}
// 	});
// 	
// });
