$().ready(function() {
	$(".desc_right").each(function() {
		var alt = $(this).attr('alt');
		var my_before = '<p class="right special">';
		var my_after = '<br />'+alt+'';
		
		$(this).parent().wrap(my_before);
		$(this).parent().after(my_after);
	});
	
	$(".desc_left").each(function() {
		var alt = $(this).attr('alt');
		var my_before = '<p class="left special">';
		var my_after = '<br />'+alt+'';
		
		$(this).parent().wrap(my_before);
		$(this).parent().after(my_after);
	});
	
	$('a[class^=lightbox]').attr('rel','lightbox-gallery');
	
});
