reg.hover('div.downloads img', function(e){
	this.src = this.src.replace(/_off\./,"_on.");
}, function(e){
	this.src = this.src.replace(/_on\./,"_off.");
});

