$(document).ready( function () {

    $('body').addClass('jquery');

    var s = '';

    $( ".stars li a" ).each(function() {

	$( this ).mouseover(function() {

	    stars = $(this).parent('li').parent('ul');
	    s = stars.attr('class');

	    stars.removeClass().addClass('stars').addClass($(this).attr('rel'));

	});

	$( this ).mouseout(function() {

	    $(this).parent('li').parent('ul').attr('class', s);

	});

    });

});

function vote(id, vote) {
    $.ajax({
	type: "POST",
	url: 'http://chmurak.pl/vote/'+id+'/'+vote,
	success: function(response){
	    $('#ch' + id).html(response);
	}
    });
}

