/**
 * code for limiting max input-length to all
 * input-fields of type="text" to 65
 * This code needs the jQuery lib, in order to
 */
$(document).ready(function(){
   $("input[type='text']").attr("maxLength", "65");
 });

var initGAnalytics = function(uacc) {
	_uacct = uacc;
	urchinTracker();
	//console.log(uacc);
}