
$(function(){
  $("#dialog").jqm({
    onShow: function(hash){
      var mp = $(hash.t).closest(".mainPanel");
	  /*if (console) console.log(hash.w);*/
      $("#dialog-head").html(mp.children(".mpTop").text());
      $("#dialog-image").attr('src', mp.find('.floatLeftImg').attr('src'));
      var newtext = mp.find("div.limited").clone().find("p").show().end().html();
      $("#dialog-text").html(newtext);
      hash.w.show();
    }
  });
  
  $("#dialog2").jqm({
  	onShow: function(hash){
      var mp = $(hash.t).closest(".mainPanel");
      $(".dialog-head",hash.w).html(mp.children(".mpTop").text());
      $(".dialog-image0",hash.w).attr('src', mp.find('img:eq(0)').attr('src'));
	  $(".dialog-image1",hash.w).attr('src', mp.find('img:eq(1)').attr('src')); 
      var newtext = mp.find("div.limited").clone().find("p").show().end().html();
      $(".dialog-text",hash.w).html(newtext);
      hash.w.show();
    },
	trigger: '.dialog2-trigger'
  });
  $("div.limited p:first-child").show();
});
