﻿// JavaScript Document
(function ($) {
    $(document).ready(function () {       
        /********* for error label***************/
        $("div.cfcolumn2 > div > div:nth-child(1) > label").append($("div.cfcolumn2 > div > div:nth-child(1) > span"));
        $("div.cfcolumn2 > div > div:nth-child(3) > label").append($("div.cfcolumn2 > div > div:nth-child(3) > span"));
        $("div.cfcolumn3 > div > div:nth-child(1) > label").append($("div.cfcolumn3 > div > div:nth-child(1) > span"));
        $("div.cfcolumn3 > div > div:nth-child(2) > label").append($("div.cfcolumn3 > div > div:nth-child(2) > span"));
        $("div.cfcolumn3 > div > div:nth-child(3) > label").append($("div.cfcolumn3 > div > div:nth-child(3) > span"));
        $("div.cfcolumn3 > div > div:nth-child(4) > label").append($("div.cfcolumn3 > div > div:nth-child(4) > span"));
        $("div.cfcolumn3 > div > div:nth-child(5) > label").append($("div.cfcolumn3 > div > div:nth-child(5) > span"));
        $("div.cfcolumn3 > div > div:nth-child(11) > label").append($("div.cfcolumn3 > div > div:nth-child(11) > span"));
        $(".scfRequired").removeClass().addClass("errortxt");
        $("div.scfSectionContent > div > label > span").removeClass().addClass("errortxt");
    });
})(jQuery);


