/* Rollover images plugin */ 
jQuery.fn.hoverImages = function() { 
	this.hover(function() { 
		$(this).find('img').each(function(){ 
			this.src = this.src.replace('_off', '_on'); 
		}); 
		$ (this).addClass('hover'); 
	}, function() { 
		$ (this).find('img').each(function() { 
			this.src = this.src.replace('_on', '_off'); 
		}); 
		$(this).removeClass('hover'); 
	}); 
}
