$(document).ready(
function()
{	 
	var star_img_bg = MAINURL+'images/ratings/star_background.png';
	var star_img = MAINURL+'images/ratings/star.png';
	
	$(".rating").mouseover(function(){
			
        var index = $(".rating").index(this);
        var limit = 0;
        
        $(".rating").css("background", "url("+star_img+") no-repeat",
				"backgroundRepeat", "no-repeat");
        
        
        limit = 5;

        while(index < limit)
        {
        	index++;
        	 $(".rating").eq(index).css("background", "url("+star_img_bg+") no-repeat",
														"backgroundRepeat", "no-repeat");
        }

    });
	
	
	$(".rating").mouseleave(function(){

        	 $(".yellow").css("background", "url("+star_img+") no-repeat",
											"backgroundRepeat", "no-repeat");
        	 $(".gray").css("background", "url("+star_img_bg+") no-repeat",
						"backgroundRepeat", "no-repeat");

   });
   
	
	$("#vote").click(function(){
		$("#ratingResult").show();
	});


	
});

