$(document).ready(function() {
	
	$('.rating').each(function(index){
		
		var staticRate = true;
		if ($(this).hasClass('staticRate'))
		{
			staticRate = false;
		}
		
		$(this).ratings(5, $(this).attr('rate'), staticRate).bind('ratingchanged', function(event, data) {
			
			$.get("index.php?module=Listings&pname=addRating&pmode=empg","rating="+ data.rating + "&carID=" + $(this).attr('carID'),function(msg){ MyAlert("הצבעתך נשמרה")} );

			
		});
	});
});
