$(document).ready(function(){  
	$(".gallery li").hover(function(){
		$(this).fadeTo("fast", 0.7); // hover
	},function(){
		$(this).fadeTo("fast", 1.0); // mouseout
	});
	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
 });

