$(document).ready(function(){
	$(".Random").each( function() {
		var dot = this.src.lastIndexOf('.');
		var random = Math.floor((Math.random() * 100)) % 3 + 1;
		this.src = this.src.substr(0, dot-2) + "_" + random + this.src.substr(dot,4);
	});
});
