/**
 * index.js
 */

$(document).ready(function(){
	$("#dp1x").hover(function(){
		$(this).find("img").attr("src", "/img/image_01_o.jpg");
	},
	function(){
		$(this).find("img").attr("src", "/img/image_01.jpg");
	});
	$("#dp2s").hover(function(){
		$(this).find("img").attr("src", "/img/image_02_o.jpg");
	},
	function(){
		$(this).find("img").attr("src", "/img/image_02.jpg");
	});
});