// code from Wizzud v001 - (gets rid of the if then construct by using an abreviated syntax I don't yet understand!)

$(document).ready(function(){$('input:submit').each(function(){var len=this.value.length;$(this).addClass(len<5?'S':len>20?'L':'M');});});

