function switchImageStarRating(chosenEl){
		var stars = $("editImageCommentsForm").getElementsByClassName("starselected");
			for(var i=0; i < stars.length; i++){
  				var tmp = stars[i];
  				$(tmp).removeClassName("starselected");	
  				$(tmp).addClassName("star");
		}			 
		$(chosenEl).removeClassName("star")	
		$(chosenEl).addClassName("starselected")
}


