$(function() {
	var hover_on = 250;
	var hover_off = 150;
	var off = "_pic.jpg";
	var on = "_name.jpg";
	
	$('img.story_photo').hoverIntent(function() {
		$(this).fadeOut(hover_on);
		$(this).queue(function() {
			this.src = this.src.replace(off, on);
			$(this).fadeIn(hover_on);
			$(this).dequeue();
		});
	}, function() {
		$(this).fadeOut(hover_off);
		$(this).queue(function() {
			this.src = this.src.replace(on, off);
			$(this).fadeIn(hover_off);
			$(this).dequeue();
		});
	});
});

$.preloadImages("images/story_ryan_name.jpg",
	"images/story_steve_name.jpg",
	"images/story_john_name.jpg");
