$(document).ready(function() {
	
	$('.age-buttons .yes input').hover(function() {
		$(this).attr('src', '/images/subpage/age/button_yes_hover.png');
	}, function() {
		$(this).attr('src', '/images/subpage/age/button_yes.png');
	});
	
	$('.age-buttons .no img').hover(function() {
		$(this).attr('src', '/images/subpage/age/button_no_hover.png');
	}, function() {
		$(this).attr('src', '/images/subpage/age/button_no.png');
	});
	
});