$(document).ready(function() {
	//テキストエリアにフォーカスした時に背景色を変更
	$("input[type=text], textarea")
		.focus( function () {
			$(this).addClass("focus");
		})
		
		.blur( function () {
			$(this).removeClass("focus");
		});
		
	//ボタンのロールオーバー、ロールアウト処理
	$("input[type=image]")
		.hover( function () {
			$(this).attr("src", $(this).attr("src").replace("_off", "_on"));
		})
		
		.mouseout( function () {
			$(this).attr("src", $(this).attr("src").replace("_on", "_off"));
		});

});

