	$(function() {

		$('#nav_home').data('rollover', 'images/nav_tixr.jpg');
		$('#nav_credits').data('rollover', 'images/nav_creditsr.jpg');
		$('#nav_reviews').data('rollover', 'images/nav_reviewsr.jpg');

		$('#nav_home, #nav_credits, #nav_reviews').hover(function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).data('rollover'));
			$(this).data('rollover', currentImg);
		}, function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).data('rollover'));
			$(this).data('rollover', currentImg);
		});

	});