﻿$(document).ready(function(){

$("a.tooltip").tooltip({cssClass:"tooltip-blue", delay:100, opacity:5});

//var topMenu=$('a.top_navigation');
//topMenu.each(function(){
//});



});

function inputCounter(theId,maxLength){
var theString=$('#'+theId).val();
var theLen=theString.length;
$('#textCounter_'+theId).text(theLen);
if(theLen >maxLength){
var newString=theString.substring(0,maxLength);
$('#'+theId).val(newString);
$('#textCounter_'+theId).attr('style','color:red;font-weight:bold;');
$('#textMax_'+theId).attr('style','color:red;font-weight:bold;');
$('#textCounter_'+theId).text(maxLength);
}
if(theLen < maxLength){
$('#textCounter_'+theId).attr('style','color:#7a2c52;font-weight:bold;');
$('#textMax_'+theId).attr('style','color:#7a2c52;font-weight:bold;');
}

}



