jQuery(document).ready(function(){
      $('a[rel*=facebox]').facebox({

      }) 

    $("a#pollyes").click(function(){ $.post("poll.php", { vote: "yes" }); });
    $("a#pollno").click(function(){ $.post("poll.php", { vote: "no" }); });    
});