$.fn.copyright=function(options){var settings={replace:false,separator:"-"}
if(options)$.extend(settings,options);var date=parseInt(this.text());var year=new Date().getFullYear();if(settings.replace||date==""){this.text(year);}else{if(year>date){this.text(date+settings.separator+year);}}}