function set_rating(id, rate, t)
{
  for( i = 1; i <= rate; i++ )
    $('#star-'+id+'-'+i).attr("src", 'images/'+t+'-star.png');

  for( i=i; i<=5; i++ )
    $('#star-'+id+'-'+i).attr("src", 'images/g-star.png');
}

function rate_post(id,rate)
{
  $.post("/vote.php", { ID: id, vote: rate } );
  
  for( i=0; i<=5; i++ )
  {
    $('#star-'+id+'-'+i).removeAttr('onclick').removeAttr('onmouseover').parent().removeAttr('onmouseout');

  }
  
  
  
  alert('Thank you for your vote!');
}

