jQuery(document).ready(function() {
	jQuery.noConflict();	
	jQuery('.rollover').hover(

		function(){ // Change the input image's source when we "roll on" 
			t = jQuery(this);              
			t.attr('src',t.attr('src').replace(/([^.]*)\.(.*)/, "$1-over.$2"));
		},            
		function(){        
			t= jQuery(this);       
			t.attr('src',t.attr('src').replace('-over',''));   
		}   
	);	
	

});



