function tx_filmy_vote(f_uid, f_ocena)
{
	$.post("index.php?eID=tx_filmy&action=vote", { uid: f_uid, vote: f_ocena },
	  function(data){
		brokenstring = data.split("!^!");
		$('#ocena_scale').html(brokenstring[0]);
		$('#ocena_liczba').html("Zapisano ocenę");
		setTimeout(function () {$('#ocena_liczba').html(brokenstring[1]);}, 4000);
	  });

}

$(document).ready(function() {
  $('img.star').bind('mouseover', function () {
	  number = $(this).attr('title');
	  $('img.star').attr('src','fileadmin/templates/main/images/star-3.png');

		$('img.star').each(function () {
			if ($(this).attr('title')<=number)
				$(this).attr('src','fileadmin/templates/main/images/star-1.png');
		});
  }
)

$('img.star').bind('mouseout', function () {
	  $('img.checked').attr('src','fileadmin/templates/main/images/star-1.png');
	  $('img.half').attr('src','fileadmin/templates/main/images/star-2.png');
	  $('img.unchecked').attr('src','fileadmin/templates/main/images/star-3.png');

  }
)
});

