
$(function() {
    $('a.savings_planner_link').click(function(e) {
        e.preventDefault();
        $('#savings_planner').modal();
    });
    $('a.sellwood-opening').click(function(e) {
        e.preventDefault();
        $('#sellwood-modal').modal();
    });
});

$(document).ready(function() {
    $('a.savings_planner_link').click(function(e) {
        e.preventDefault();
        $('#savings_planner').modal();
    });
});



function closeYouthSavingsPlanner() {
    $.modal.close();
}

function createLTEPlanner(firstname, item, goal, saved, weekly) {
    window.location.replace('/UmpquaLife/Support/learn-to-earn-kids/savings-planner.aspx?firstname=' + firstname + '&item=' + item + '&goal=' + goal + '&saved=' + saved + '&weekly=' + weekly);
}

$(".externallink").mouseover(function() {
        Tip(LeavingUmpqua, BALLOON, true, ABOVE, true);
        }
    ).mouseout(function() {
        UnTip();
    }
);
    $(function() {
        // FancyZoom
        if ($('.watch-video').length) {
            $('.watch-video').fancyZoom();
        }
        // Videofy
        if ($('.featured-video').length) {
            $('.featured-video').videofy();
        }
    });


function showDetails(id2) {
        var id = document.getElementById(id2);
        if (id.style.display == 'none') 
        {
            id.style.display = 'block';
        }
        else 
        {
            id.style.display = 'none';
        }
    }