﻿jQuery(document).ready(function() {
    var tabindex = 1;
    jQuery('a').each(function() {
        if (this.type != "hidden") {
            var $input = jQuery(this);
            $input.attr("tabindex", tabindex);
            tabindex++;
        }
    });
});
