$(document).ready(
  function()
  {
    $("#store-logo a").click(
      function()
      {
        window.open(this.href, "order-window", "menubar=0,width=800,height=600,scrollbars=1");
        return false;
      }
    );
    
    $("a.fancybox").fancybox();
  }
);