// �}�C�y�[�W
$(function() {
	// ������������ւ̍X�V���
	$("#update tr").mouseover(function() {
		$(this).addClass("current");
	});
	$("#update tr").mouseout(function() {
		$(this).removeClass("current");
	});

	// �S�̂���̐V��
	$("#all tr").mouseover(function() {
		$(this).addClass("current");
	});
	$("#all tr").mouseout(function() {
		$(this).removeClass("current");
	});
});

function zoomUpPicture(obj,w,h){
	obj.style.zIndex = 1;
	obj.style.position = "absolute";
	zoom(obj,w,h);
}

function zoomDownPicture(obj,w,h){
	obj.style.zIndex = 0;
	obj.style.position = "static";
	zoom(obj,w,h);
}

function zoom(obj,w,h){
	obj.style.width = w + "px";
}