$(document).ready(function() {
    if (!$('#gallery').is('*')) {
        return;
    } else {
        $('#subnav a').each(function() {
            $(this).click(function() {
                $('#photo img').attr('src', $(this).attr('href'));
                return false;
            });
        });
    }
});

