$(document).ready(function () {
		
		var voteindex=$("input#voteindex").val();
	
	$("#vote_submit").click(function () {
	
		var votevalue=$("input#votevalue").val()
		$("#vote_form").load("js/ajavote.php", { 'voteindex': [voteindex],'value': [votevalue]});
		
		
	});
	
	
	
	
	

});