// ================================================= //
//  links in new windows
// ================================================= //
// <a href="page.html" class="new-window">Page</a>
// 
$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});

$(document).ready(function() {

    setupHandlers();

});

function setupHandlers() {
    setupTips(); // Set up field tips
}

function setupTips() {
    $('em.tip').each(function() {
        var tip = $(this);
        var tipFor = tip.next('input, textarea');
        if (tipFor.val() == '') {
            tip.addClass('active');
        } else {
            tip.hide();
        }
        tip.click(function(){
            tipFor.focus();
        });
        tipFor.focus(function() {
            tip.hide();
        });
        tipFor.blur(function() {
            if ($(this).val() == '') {
                tip.addClass('active').show();
            }
        });
    });
}

