$(document).ready(function(){
    $('#home1').hide();
    $('#home2').hide();
    $('#home3').hide();
    
    $('.nav a').each(function(i, elem){
        $(this).hover(function(){
            var el = $('#home' + (i+1));
            $('img', el.parent()).hide();
            el.show();
        }, function(){
            var el = $('#home0');
            $('img', el.parent()).hide();
            el.show();
        });
    });
});
