/**
 * ページロード時に初期設定を行う
 */
$(document).ready(function(){

	$("table.form th, table.form td").addClass("row");
	$("table.form tr")
		.mouseover(function(){
			$(this).find("th, td").addClass("row_hover");
		})
		.mouseout(function(){
			$(this).find("th, td").removeClass("row_hover");
		});

	$("input.textbox, select, textarea")
		.addClass("normal")
		.focus(function(){
			$(this).addClass("focus");
		})
		.blur(function(){
			$(this).removeClass("focus");
		});


	$("input.button, a.button")
		.mouseover(function(){
			$(this).addClass("button_hover");
		})
		.mouseout(function(){
			$(this).removeClass("button_hover");
		});

	$("#flashDialog").dialog({
		bgiframe: true,
		autoOpen: true,
		width: 650,
		modal: true,
		draggable: false,
		buttons: {
			"OK": function() {
				$(this).dialog("close");
			}
		}
	});
});
