$(document).ready(function () {
	$('img#yes').hover(function() {
		$(this).attr("src","/images/sections/age/yes-over.jpg");
			}, function() {
		$(this).attr("src","/images/sections/age/yes.jpg");
	});
	$('img#no').hover(function() {
		$(this).attr("src","/images/sections/age/no-over.jpg");
			}, function() {
		$(this).attr("src","/images/sections/age/no.jpg");
	});
	$('.submit').hover(function() {
		$(this).attr("src","/images/sections/competition/submit-over.jpg");
			}, function() {
		$(this).attr("src","/images/sections/competition/submit.jpg");
	});
});
