$(document).ready(function() {	
	$('.btn-learn-ro').hover(
		function() {
			$(this).attr('src', '/img/btn-learn-over.png');
		},
		function() {
			$(this).attr('src', '/img/btn-learn.png');
		});	
	$('.btn-signup-ro').hover(
		function() {
			$(this).attr('src', '/img/btn-signup-over.png');
		},
		function() {
			$(this).attr('src', '/img/btn-signup.png');
		});
	$('.btn-subscribe-ro').hover(
		function() {
			$(this).attr('src', '/img/btn-subscribe-over.png');
		},
		function() {
			$(this).attr('src', '/img/btn-subscribe.png');
		});
});
