﻿$(document).ready(function() {
    /* setup hints on textboxes. valid for any textbox with a title attribute */
    $("input:text").hint();
    $("input:password").hint();
    /* make all external links open in new window */
    $("a[href*='http://']:not([href*='" + location.hostname + "'])").attr("target", "_blank");
});