/*
* jQuery website library of useful jquery code snippets
*
*/


// open external links in a new window
$(function () {
    $("a[href^=http://]").attr("target", "_blank");
});


// Disables the Submit button once clicked to stop multiple submits
$("formName").submit(function () {
    $(":submit", this).attr("disabled", "disabled");
});

