var Utils={date:function(){function add(datePart,diff){var d=new Date();var dateDiff=parseInt(diff);dateDiff=(dateDiff)?dateDiff:0;switch(datePart){case"y":case"year":d.setFullYear(d.getFullYear()+dateDiff);break;case"mo":case"month":d.setMonth(d.getMonth()+dateDiff);break;case"d":case"day":d.setDate(d.getDate()+dateDiff);break;case"h":case"hour":d.setHours(d.getHours()+dateDiff);break;case"mi":case"minute":d.setMinutes(d.getMinutes()+dateDiff);break;case"s":case"second":d.setSeconds(d.getSeconds()+dateDiff);break;case"ms":case"millisecond":d.setMilliseconds(d.getMilliseconds()+dateDiff);break;default:break}return asString(d)}function asString(d){return d.getMonth()+1+'/'+d.getDate()+'/'+d.getFullYear()}return{add:add,asString:asString}}(),ready:function(){function _init(){e=document.createElement('div');e.setAttribute('id','util-ready-marker');e.setAttribute('style','display:none;');document.getElementsByTagName('body')[0].appendChild(e)}return{init:_init}}()};$(document).ready(Utils.ready.init);