
$(document).ready(function(){

  pic1 = new Image(663,78);	pic1.src = "/imgs/popup_top.png";
  pic2 = new Image(663,1);	pic2.src = "/imgs/popup_center.png";
  pic3 = new Image(663,35);	pic3.src = "/imgs/popup_bot.png";
  
  $("#popup_link").click(function(){
    $("#popup").css("display","block");
  });
  
  $("#popup_close").click(function(){
    $("#popup").css("display","none");
  });
  
  $("#header_top").click(function(){
    window.location.href="/";
  });
  
  DD_belatedPNG.fix("#popup_top");
  DD_belatedPNG.fix("#popup_center");
  DD_belatedPNG.fix("#popup_bot");
})






