// JavaScript Document

$(document).ready(function(){
	var oldImg = '';
	$("img.change").hover(function(){
		oldImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('name'));
	}, function(){
		$(this).attr('src', oldImg);
		oldImg = '';
	});
});
