jQuery(document).ready(function() {

$("a[rel^='prettyPhoto']").prettyPhoto();

$(".gallery_name").click(function(e) {
	e.preventDefault();
	$($(this).attr('rel')).toggle('slow');
});


});//end document ready

