﻿
$(document).ready(function() {
    $("#recaptcha_image img").attr("alt", "Recaptcha Image");
    $("#recaptcha_logo").attr("alt", "Recaptcha Logo");
    $("[name=recaptcha_response_field]").attr("title", "Enter recaptcha code here.")
    $("#recaptcha_tagline").attr("alt", "Recaptcha Tagline").hide();
    $("iframe").attr("title", "Recaptcha");

    //Apply a char restrictor to comments.
    $('.comment').charCounter(5000,
    {
        container: "<div></div>",
        classname: "counter"
    });
});

