/* ---------------myjs js file--
	Date: 2010.12.3	version: 1.01
	author: maple		
---------------------------------------------------- */
$(function(){
	$(".imgMove").mouseover(function(){
		var svalue=$(this).attr("id");
		var movle="images/"+svalue+"_mov.gif";
		$(this).attr("src",movle);	
	}).mouseout(function(){
		var svalue=$(this).attr("id");
		var movle="images/"+svalue+".gif";	
		$(this).attr("src",movle);
	})
})
