function change_rating(rating, song)
{
	var rating_width = rating * 25;
	var rating_li = document.getElementById("rating");

	rating_li.setAttribute("class", "small-star voted-rating"); 
	rating_li.setAttribute("className", "small-star voted-rating");
	rating_li.style.width = rating_width +'%';
	
	document.getElementById("star1").removeAttribute("href");
	document.getElementById("star1").removeAttribute("title");
	document.getElementById("star2").removeAttribute("href");
	document.getElementById("star2").removeAttribute("title");

	document.getElementById("star3").removeAttribute("href");
	document.getElementById("star3").removeAttribute("title");

	document.getElementById("star4").removeAttribute("href");
	document.getElementById("star4").removeAttribute("title");

	document.getElementById("star1").onclick = null;
	document.getElementById("star2").onclick = null;
	document.getElementById("star3").onclick = null;
	document.getElementById("star4").onclick = null;
	jx.load('/cgi-bin/rate.pl?rating='+rating +'&song='+song);
}