/* ---------------------------------------------
	
	created: 2009-05-19;
	last-modified: 2009-05-19;

--------------------------------------------- */



/* --------------------------------
	クレジット OPEN/CLOSE
-------------------------------- */

$(document).ready(function(){
	$('#creditMovie img').hover(function(){
			$(this).attr('src', 'images/credit_movie_open.gif');
		}, function(){
			$(this).attr('src', 'images/credit_movie.gif');
		}
	);
})