$(document).ready(function() {
	$('img').hover(function() {
		$(this).attr('src', 'splash-hover.gif');
	}, function() {
		$(this).attr('src', 'splash.gif');
	});
});
