﻿$(function() {

    //datepicker
    $(".date").datepicker();

    //datepicker - expiry
    $(".expiry").datepicker({
        changeMonth: true,
        changeYear: true,
        minDate: 0,
        yearRange: "+0:+10"
    });

    //datepicker - dob
    $(".dob").datepicker({
        changeMonth: true,
        changeYear: true,
        defaultDate: "-19y",
        yearRange: "-99:-15"
    });

    //cluetip - large
    $('.large-popup').cluetip({
        activation: 'click',
        closePosition: 'bottom',
        closeText: '[ x ]',
        cursor: 'pointer',
        dropShadow: false,
        height: 240,
        local: true,
        showTitle: false,
        sticky: true,
        width: 660
    });

    //h2 auto-indexing
    var s = "";
    $("h2").each(function(i) {
        var text = $(this).html();
        $(this).html("<a name=\"" + i + "\">" + text + "</a>");
        s += "<p><a href=\"#" + i + "\">" + text + "</a></p>";
    });
    $("#index").html(s);

});
