$(document).ready(function(){
	$(".allvotes").val('1');
	});
	
function showv(id, stars_x, out) {
	if (out == false) {
		var stars = stars_x
		}
	else {
		var stars = $("#voting_" + id).val();
		}
	
	if(stars == '1') { var wdth = '13px'; }
	if(stars == '2') { var wdth = '26px'; }
	if(stars == '3') { var wdth = '39px'; }
	if(stars == '4') { var wdth = '52px'; }
	if(stars == '5') { var wdth = '68px'; }
	$("#vote_" + id).width(wdth);
	
	}


function setvote(id, stars) {
	$("#voting_" + id).val(stars);
	}

function dovote(id) {
	var points = $("#voting_" + id).val();
	
 	$.ajax({
   	type: "POST",
   	url: "?here",
   	data: "id=" + id + "&p=" + points,
   	success: function(msg){
    	$("#votebutton_" + id).html("");
    	$("#votebutton_" + id).css({ background:"none" });
    	
    	$("#votex_" + id).html("");
    	$("#votex_" + id).css({ background:"none" });
   	}
 		});
	
	
	}
