  function clickit(p){
    $.post("likeit/likeit.php", 
    {open: p}, 
    function(xml) {
      // format and output result
      $("#vote_code").html(
        $("count", xml).text() + "<a class='likeit_color' href='#' onclick = 'clickit2(1)'> people like this</a>"
      );
    });
  }  

  function clickit2(p){
    $.post("likeit/likeit.php", 
    {rating: p}, 
    function(xml) {
      // format and output result
      $("#vote_code").html(
        $("count", xml).text() + "<span class='likeit_color'> people like this</span>"
      );
    });
  }

      
