// $Id$

jQuery(
		function() {
			$('.rollover').bind('mouseover',function(f) {
				this.src = '/images/'+this.name+'_on.jpg';
			});
			
			$('.rollover').bind('mouseout', function() {
				this.src = '/images/'+this.name+'.jpg';
			});
		}
);
