/*
function checkPresence(field) {
 var hint = $F(field).length == 0 ? "Bitte ausfüllen" : "i.O.";
 if ($(field + '_hint')) {
   $(field + '_hint').update(hint);
 } else {
   content = '<div class="validation" id="' + field + '_hint">' +
              hint + '</div>';
   new Insertion.After(field, content);
 }
}
*/

$(function($) {
	var options = {
			format: '%d.%m.%y %H:%M:%S',
	        fontFamily: 'Trebuchet MS, Verdana, Helvetica, Arial, sans-serif',
			foreground: '#c9c9c9',
	        fontSize: '20px'
	      }
	$('.jclock').jclock(options);
        
});

