$(document).ready(function() {
 	$(".rollover img").hover(
		function() {
			this.src = this.src.replace("_out", "_over");
		},
		function() {
			this.src = this.src.replace("_over", "_out");
		}
	);
}); 


