$(function(){
	$("#document a, .listItem a")
		.filter(function(i){
			return $(this).attr('href').match(/\.(jpe?g|gif|png)$/i);
		})
		.each(function(i){
			if(undefined == $(this).attr('rel'))
				$(this).attr('rel', '');
			if(undefined == $(this).attr('title'))
				$(this).attr('title', '');
		})
		.prettyPhoto();
});
