/**
 * Method to ajax postvote
 * @access public
 * @return void
 **/
function aki_postvote(type, postid){
	/* temporary score ... */
	jQuery(".score"+postid).html("...");

   jQuery.ajax({
   type: "POST",
   url: "/wp-content/plugins/aki_postvote/postvote.php",
   data: "func=addVote&type="+type+"&postid="+postid,
   success: function(msg){
     if(msg != '')
     {
     	if(type == 'up')
     	{
     		jQuery("#up"+postid).attr("src", "/wp-content/plugins/aki_postvote/images/vote_up.gif");
     	}
     	else if(type == 'dn')
     	{
     		jQuery("#dn"+postid).attr("src", "/wp-content/plugins/aki_postvote/images/vote_dn.gif");
     	}
     	/* calcul new score */
     	jQuery(".score"+postid).html(msg);
     	/* delete link */
     	jQuery("#lup"+postid).removeAttr("href");
     	jQuery("#ldn"+postid).removeAttr("href");
     }
   }
 });

}
