// JavaScript Document

  	function rateMe(id, table, znamka, div){
		//alert('jirka');
		
		$('.starsContainer').fadeOut('fast');
		fadeIn_timeout('#rateStatus', 200, 'fast');
		
		 $.ajax({
		   type: "POST",
		   url: '_modules/_rate/rate-it.php',
		   data: 'id='+ id +'&table='+ table +'&znamka='+ znamka +'&div='+ div +'',
			success: function(data){
			var str = data.split(';');

			//$('#'+ div ).html(str[0]);
			$('.celkemHodnotilo').text(str[1]);
			fadeOut_timeout('#rateStatus', 400, 'fast');
			//$('#userStars').html(str[2]);
			//$('.starsContainer').hide('fast');
			//fadeIn_timeout('.starsContainer', 600, 'fast');
			html_fill_and_fadeIn_timeout('#userStars', 500, 'slow', str[2])
			//$('#userStars').fadeIn('slow');
			//fill_and_fadeIn_timeout('#'+ div, 500, 'slow',str[2] )
		   }
		 });
	 }



	
	
$(document).ready(function(){
	

	var how = 'fast';	 

	$(".starsOver_001").mouseover(function () {
		  $(".starsOff_001").fadeIn(how);
		  $(".starsOff_002").fadeOut(how);
		  $(".starsOff_003").fadeOut(how);
		  $(".starsOff_004").fadeOut(how);
		  $(".starsOff_005").fadeOut(how);
		});
	$(".starsOver_002").mouseover(function () {
		  $(".starsOff_001").fadeIn(how);
		  $(".starsOff_002").fadeIn(how);
		  $(".starsOff_003").fadeOut(how);
		  $(".starsOff_004").fadeOut(how);
		  $(".starsOff_005").fadeOut(how);
		});
	$(".starsOver_003").mouseover(function () {
		  $(".starsOff_001").fadeIn(how);
		  $(".starsOff_002").fadeIn(how);
		  $(".starsOff_003").fadeIn(how);
		  $(".starsOff_004").fadeOut(how);
		  $(".starsOff_005").fadeOut(how);
		});
	$(".starsOver_004").mouseover(function () {
		  $(".starsOff_001").fadeIn(how);
		  $(".starsOff_002").fadeIn(how);
		  $(".starsOff_003").fadeIn(how);
		  $(".starsOff_004").fadeIn(how);
		  $(".starsOff_005").fadeOut(how);
		});
	$(".starsOver_005").mouseover(function () {
		  $(".starsOff_001").fadeIn(how);
		  $(".starsOff_002").fadeIn(how);
		  $(".starsOff_003").fadeIn(how);
		  $(".starsOff_004").fadeIn(how);
		  $(".starsOff_005").fadeIn(how);
		});
		
	$(".starsOn").mouseleave(function () {
		  $(".starsOff_001").fadeOut(how);
		  $(".starsOff_002").fadeOut(how);
		  $(".starsOff_003").fadeOut(how);
		  $(".starsOff_004").fadeOut(how);
		  $(".starsOff_005").fadeOut(how);
		  
		  $(".active").fadeIn("slow");
		  
		});

 });
