//set this to the width of the large star
var largeStarWidth = 18;

function setRating(which) {

	var theWidth;

	theWidth = which * largeStarWidth;

	document.getElementById('theirRating').style.width = theWidth+'px';

	document.getElementById(theRating).value = which;

}
