﻿$(document).ready(function () {


    // inject top and bottom of tables.
    $("#contour fieldset").prepend("<span class='before' />");
    $("#contour fieldset").append("<span class='after' />");


    // Replace legend with h4
    $("#contour legend").each(
        function () {
            if ($(this).is(":visible")) {
                var title = $(this).html();
                $(this).replaceWith("<h4>" + title + "</h4>");
            }            
        }
    );

    // Remove the <br>'s so I can style the checkboxes :)
    $("#contour fieldset.password .checkbox.changepassword br").remove();

    // Remove the <br>'s so I can style the radio button lists :)
    $("#contour fieldset .contourField>br").remove();


    // Add "Please select" to dropdown lists where first option is blank
    $("#contour fieldset select").each(
        function () {
            $(this).children("option:eq(0)").append("Please select");
        }
    );

});