﻿$(document).ready(function() {

		$("span.ratelinks a").click(function(){
	        //get the id
	        the_id = $(this).attr('id');
	        pare = $(this).parent().parent().attr('id');
	        rate = $(this).text();
	        the_this = this;  
	        //the main ajax request
			
            
	        $.ajax({
	            type: "POST",
	            
	            data: "do=rate&rating="+rate,
	            url: "http://www.ctrl.lt/index.php/vertinti/index",
	            success: function(msg)
	            {
					if(parseFloat(msg) > 0){
                        
						$(the_this).parent().parent().parent().children(".current-rating").css({ width: "" + msg * 20 + "%" });
						balsu = parseFloat($("#balsu" + pare).text()) + 1;
						$("#balsu" + pare).html(balsu);
						$("#vidurkis" + pare).html(msg);
						$(the_this).parent().parent().remove();
	        		}
	            }
	        });
		});



	});

