$(function() {
  $.ajax({
    type: "GET",
    url: "pressimage.php",
    data: "which=0",
    success: function(msg) {
      $("#right").append(msg);
    }
  });
  $.ajax({
    type: "GET",
    url: "presstext.php",
    data: "which=0",
    success: function(msg) {
      $("#right").append(msg);
    }
  });
  $("#presslist").ready(function(){
    $.ajax({
      type: "GET",
      url: "presslist.php",
      success: function(msg) {
        $("#presslist").append(msg).fadeIn(500);
      }
    });
  });
});

function pdf(target) {
  image = $("#pdf"+target).attr("href");
  $("#cover").attr("src",image).fadeIn(500);
  $("#right p").remove();
  $.ajax({
    type: "GET",
    url: "presstext.php",
    data: "which="+target,
    success: function(msg) {
      $("#right").append(msg);
    }
  });
  return false;
}