$(function()
{
  $("#AboutTab").txtabs({titleWidth:110 , contentWidth:450}).css("display" , "block");
});

function imageView(src , width , height)
{
  var $img = $("<img/>").attr("src" , src).css("border" , "solid 1px #888888").attr("title" , "クリックで閉じる");
  var $div = $("<div></div>");
  $div.dialog({"width":(width+28) , "height":(height+28) , modal:true , resizable:false , dialogClass:"ImageView"});
  $(".ImageView .ui-dialog-titlebar").css("display" , "none");
  $(".ImageView .ui-dialog-buttonpane").css("display" , "none");
  $div.width(width + 2).height(height + 2);
  $div.append($img);
  $div.click(close);
  $(".ui-widget-overlay").fadeTo(1 , 0.5);
  function close()
  {
    $(this).dialog("close");
  }
}

