
	$(document).ready(function() {
    $('#home').fadeIn(1000);

$("#one").hover(function(){
$('#happy').fadeIn(1000);
$('#healthy').fadeOut(1000);
$('#wealthy').fadeOut(1000);
$('#home').fadeOut(1000);
});
$("#happy").hover(function(){
$('#happy').fadeOut(1000);
$('#home').fadeIn(1000);
});
$("#two").hover(function(){
$('#healthy').fadeIn(1000);
$('#happy').fadeOut(1000);
$('#wealthy').fadeOut(1000);
$('#home').fadeOut(1000);
});
$("#healthy").hover(function(){
$('#healthy').fadeOut(1000);
$('#home').fadeIn(1000);
});

$("#three").hover(function(){
$('#wealthy').fadeIn(1000);
$('#happy').fadeOut(1000);
$('#healthy').fadeOut(1000);
$('#home').fadeOut(1000);
});
$("#wealthy").hover(function(){
$('#wealthy').fadeOut(1000);
$('#home').fadeIn(1000);
});
});
