$(function(){
$(".target_show").addClass("hide");
$(".show").addClass("open");
for (var i = 0, maxi = 8; i < maxi; i++)
{
	$("#op_"+i).click(new Function('', '$("#tar_'+i+'").show();$("#op_'+i+'").removeAttr("open").addClass("opened");'));
}
});

