$(document).ready(function () {
    $("#tree-code").bind('click', function () {
        if ($(this).val()=='Enter Tree-ID here') {
            $(this).val('');
        }
    });
    $("#tree-code").bind('blur', function () {
        if ($(this).val()=='') {
            $(this).val('Enter Tree-ID here');
        }
    });
    $("a.external").each(function () {
        $(this).attr('target', '_blank');
    });
})
