$(document).ready(function() {
	$("dl.gallery-item > dt > a").each(function() {
		$(this).attr("rel", "prettyPhoto[" + $(this).parent().parent().parent().attr("id") + "]");
	});
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'fast',
		theme: 'light_rounded'
	});
});

