$(document).ready(function() {
						   
	$('.btn')
	.mouseenter(function(){
		$(this).find('img').removeClass('normal').addClass('over');
	})
	.mouseleave(function(){
		$(this).find('img').removeClass('over').addClass('normal'); 
	});
	
	// about page
	rollovers('#learnMore');
	
});

// b is the id of the img tag
function rollovers(b) { 

	$(b)
	.mouseenter(function() {
		$(this).attr('src', $(this).attr("src").split(".").join("_over."));
	})
	.mouseleave(function() {
		$(this).attr('src', $(this).attr("src").split("_over.").join("."));
	});
}