$(document).ready(function() { 
  
$('.rollover').hover(function() { 
       
var currentImg = $(this).attr('src'); 
        
$(this).attr('src', $(this).attr('hover')); 
       
$(this).attr('hover', currentImg); 
   
}, function() { 
      
var currentImg = $(this).attr('src'); 
        
$(this).attr('src', $(this).attr('hover')); 
        
$(this).attr('hover', currentImg); 
	
       
      }); 
});

$("a").click(function(event) {
  alert(event.type);
});

