/**
 * 【アプリケーション開発サイト】 TOPページ専用
 *
 * @author 2011-01-25 Atsushi Onoda <onoda@sight-inc.co.jp>
 * @editor 2011-01-25 Atsushi Onoda <onoda@sight-inc.co.jp>
 * @copyright Copyright (C) Sight,Inc. All Rights Reserved
 */
 
/* くるっくプロジェクト */
$("#to_project01").mouseover(function() {
	$("#top_change_img").attr({
		src: "_images/index/comment02.jpg"
	});
}).mouseout(function(){
 	$("#top_change_img").attr({
		src: "_images/index/comment01.jpg"
	});
});

/* 富大生との連携 */
$("#to_project02").mouseover(function() {
	$("#top_change_img").attr({
		src: "_images/index/comment03.jpg"
	});
}).mouseout(function(){
 	$("#top_change_img").attr({
		src: "_images/index/comment01.jpg"
	});
});	

/* 便利アプリの紹介 */
$("#to_project03").mouseover(function() {
	$("#top_change_img").attr({
		src: "_images/index/comment04.jpg"
	});
}).mouseout(function(){
 	$("#top_change_img").attr({
		src: "_images/index/comment01.jpg"
	});
});

