$(document).ready(function(){
	$('.box .overlay').hide();
	
	$('.box').hover(function() {
		$(this).children('.overlay').show();
	}, function() {
		$(this).children('.overlay').hide();
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto();
});
