function setrating(imagepath,action,rating,saverating,imageType){
	// imagepath will either be "ss_global" or the name of the store
	if (imagepath != "ss_global"){
		var setImgPath = "/mall/" + imagepath + "/images/rating/";
	}
	else {
		var setImgPath = "/mall/images/rating/";
	}
	// if the user has clicked on a rating image save the rating
	if (saverating == 1){
		document.getElementById('rating').value=rating;
	}
		
	for (i=1; i<=5; i++){
		if(rating < i){
			document.getElementById('rating'+i).src=setImgPath + "rating-off." + imageType;
		}
		else {
			document.getElementById('rating'+i).src=setImgPath + "rating-on." + imageType;				
		}	
	}
	// this bit only happens onmouseout
	if (action == "off"){
		for (i=1; i<=5; i++){
			if(document.getElementById('rating').value < i || document.getElementById('rating').value == 0){
				document.getElementById('rating'+i).src=setImgPath + "rating-off." + imageType;
			}
			else {
				document.getElementById('rating'+i).src=setImgPath + "rating-on." + imageType;				
			}	
		}
	}	
}

