$j(document).ready(function(){
	
	
	$j("a[rel^='prettyPhoto']").prettyPhoto();
	$j(".gallery-thumb").hoverIntent(function(){
	
		$j(this).find(".optionsOnHover").fadeIn("fast");
	
	}, function() {
		
		$j(this).find(".optionsOnHover").fadeOut("fast");
		
	});
	
});