﻿$(document).ready(function() {
	// Culture
	var notice = 'characters remaining';

	if (typeof(culture) != 'undefined') {
		if (culture == 'fr') {
			notice = 'caractères restants';
		} else if (culture == 'es-es') {
			notice = 'caracteres restantes';
		} else if ((culture == 'de') || (culture == 'de-at')) {
			notice = 'Zeichen übrig';
		}
	}

	// Apply counter to textarea
	$("*[id$='tbComments']").charCounter(200, {
		format: "(%1 " + notice + ")"
	});
});