$(document).ready(function(){

$(".wlk_helpfulplus").bind("click", function(e){

page_var = $(this);

thecount = page_var.parents('.plus').children('.thecount').html();

article_id = page_var.parents('.plus').children('.thisid').html();

jQuery.post('/wlk_helpful_ajax', {"article_id":article_id,"up_down":'up'}, function(data){

if(data.length > 0) {

page_var.parents('.plus').children('.thecount').html(parseInt(thecount)+1);

}

});

return false;

});

});

//Rate it down 1

$(document).ready(function(){

$(".wlk_helpfulminus").bind("click", function(e){

page_var = $(this);

thecount = page_var.parents('.minus').children('.thecount').html();

article_id = page_var.parents('.minus').children('.thisid').html();

jQuery.post('/wlk_helpful_ajax', {"article_id":article_id,"up_down":'down'}, function(data){

if(data.length > 0) {

page_var.parents('.minus').children('.thecount').html(parseInt(thecount)+1);

}

});

return false;

});

});
