jQuery.noConflict();
jQuery(document).ready(function($){

	$('.story img:first, .ngg-album img:first').css({ opacity: 0.75 });
	$('.story, .ngg-album').hover(function(){
		//$(this).css({ cursor: 'pointer' });
		$('img:first', this).fadeTo(200,1);
	}, function(){
		$('img:first', this).fadeTo(200, 0.75);
	});

});