$(document).ready(function() {

	/* This is basic - uses default settings */
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	jQuery('a.pretty img').mouseover(function() {
		jQuery(this).stop().fadeTo(300, 0.5);
	});
	jQuery('a.pretty img').mouseout(function() {
		jQuery(this).stop().fadeTo(400, 1.0);
	});
});
