﻿// Rollover for Star
// Applies to images with a class of starRoll
// Requires srcroll attribute


 $(document).ready(function() {
	 $(".starRoll").hover(
	 function() {
 		this.src = this.src.replace("_off", "_on");
	 },
	 function() {
 		 this.src = this.src.replace("_on", "_off");
	 }
	);
});
