$(function(){



	$("a.vote_up").click(function(){



	//get the id

	the_id = $(this).attr('id');

	the_id_array = the_id.split(':');
	
	var compnum;
	var votes1;
	var votes2;
	
	the_id = the_id_array[1]+":"+the_id_array[2];
	compnum = the_id_array[1];
	votes1 = the_id_array[3];
	votes1++;
	votes2 = the_id_array[4];
	the_title = $(this).attr('title');
	votes_array = the_title.split(':');
	votes1lab = votes_array[0];
	votes2lab = votes_array[1];
	
	
	// show the spinner

//alert(the_id+"--"+compnum+"--"+votes1+"--"+votes2);
//alert(compnum);

	$(this).parent().html("<img src='images/spinner.gif'/>");



	



	//fadeout the vote-count 



	//$("span#votes_count"+the_id).fadeOut("fast");



	



	//the main ajax request



		$.ajax({



			type: "POST",



			data: "action=vote_up&id="+the_id,



			url: "votes.php",



			success: function(msg)



			{

				document.getElementById('a1votes_count'+compnum).innerHTML = '<span class="voted">'+votes1lab+' ('+votes1+')</span>';
				document.getElementById('a2votes_count'+compnum).innerHTML = '<span class="voted">'+votes2lab+' ('+votes2+')</span>';


				//$("span#votes_count"+the_id).html(msg);



				//fadein the vote count



				//$("span#votes_count"+the_id).fadeIn();

				

				//fadein the tick

				

				//$("span#votes_count"+the_id).after("&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;Thank you for voting");



				//remove the spinner



				//$("span#vote_buttons"+the_id).remove();



			}



		});



	});



	



	$("a.vote_down").click(function(){


//GET ID

	the_id = $(this).attr('id');

	the_id_array = the_id.split(':');
	
	var compnum;
	var votes1;
	var votes2;
	
	the_id = the_id_array[1]+":"+the_id_array[2];
	compnum = the_id_array[1];
	votes1 = the_id_array[3];
	votes2 = the_id_array[4];
	votes2++;
	the_title = $(this).attr('title');
	votes_array = the_title.split(':');
	votes1lab = votes_array[0];
	votes2lab = votes_array[1];
	
	// show the spinner



	$(this).parent().html("<img src='images/spinner.gif'/>");



	



	//the main ajax request



		$.ajax({



			type: "POST",



			data: "action=vote_down&id="+the_id,



			url: "votes.php",



			success: function(msg)



			{
				document.getElementById('a1votes_count'+compnum).innerHTML = '<span class="voted">'+votes1lab+' ('+votes1+')</span>';
				document.getElementById('a2votes_count'+compnum).innerHTML = '<span class="voted">'+votes2lab+' ('+votes2+')</span>';

				//$("span#votes_count"+the_id).fadeOut();



				//$("span#votes_count"+the_id).html(msg);



				//$("span#votes_count"+the_id).fadeIn();

				//$("span#votes_count"+the_id).after("&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;Thank you for voting");



				//$("span#vote_count"+the_id).remove();



			}



		});



	});



});	
