$(document).ready(function() 
{
	var index;
	
	// Rate hover
	$("#rate").hover(
		function () {
			$("#rate-bar").css('display', 'block');
			
			$('#rate-bar img').hover(	
				function() 
				{
					index = $('#rate-bar img').index(this) + 1;
					$('#rate-bar img:lt(' + index + ')').attr('src', '/images/icons/star-active.png');
				},
				function()
				{
					index = $('#rate-bar img').index(this) + 1;
					$('#rate-bar img:lt(' + index + ')').attr('src', '/images/icons/star-grey.png');
				}
			);
		},
		function () {
			$("#rate-bar").css('display', 'none');
		}
	);
	
	// Rate click
	$('#rate-bar img').click(
		function(){	
			$.ajax({
				type: "GET",
				url: "/ajax/rate.php",
				data: "rating=" + index + "&gid=" + $('#rate-bar').attr('gid') + "&check=" + $('#rate-bar img').eq(index - 1).attr('check'),
				
				success: function(msg) {
					$('#rate-info').html(msg);
				}
			});
		}
	);
});
