$( function() {
	$('body article a[href*=".jpg"]').each(function(){
		var title = $(this).parent('p').text();
		$(this).attr('title', title);
	}).lightBox();
	
	$('body article img:not(.plain)').each( function() {
		var title = "";
		var img = $(this);
		if(img.parents('.image_rotate').size() > 0) {
			title = img.attr('title');
		} else {
			title = img.parent('p').text();
		}
		img.wrap("<a href=\""+img.attr('src')+"\" title=\""+title+"\"></a>");
	}).parent().lightBox();
});

