/* All JS files combined and minified */
// jquery.inputempty.js
if(typeof jQuery!="undefined"){(function(a){jQuery.fn.emptyonfocus=function(b){var c={validInputsSelector:":visible:enabled:text, :visible:enabled:password, textarea:visible:enabled",getAllInputsIfEmpty:true,focusClassName:"focused"},b=a.extend(c,b);return this.each(function(){var e=a(this);if(e.is(b.validInputsSelector)){var d=a(elements)}else{if(e.is("form")){var d=e.find(b.validInputsSelector)}else{if(b.getAllInputsIfEmpty){var d=a(b.validInputsSelector)}}}if(d){d.focus(function(){if(a(this).val()===this.defaultValue){a(this).val("")}a(this).addClass(b.focusClassName)}).blur(function(){if(!a(this).val()){a(this).val(this.defaultValue)}a(this).removeClass(b.focusClassName)})}})}})(jQuery)};
// jquery.smooth-scrolling-anchors.js
if(typeof jQuery!="undefined"){(function(a){jQuery.fn.scrollanchors=function(b){var c={speed:900,focusClass:false,easing:false},b=a.extend(c,b);return this.each(function(){var d=a(this).find("a[href*=#]");d.click(function(g){g.preventDefault();if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var e=a(this.hash);e=e.length&&e||a("[id="+this.hash.slice(1)+"]");if(e.length){var f=e.offset().top;a("html,body").animate({scrollTop:f},b.speed,b.easing);if(b.focusClass){e.addClass(b.focusClass)}}}})})}})(jQuery)};
// jquery.replacemail.js
if(typeof jQuery!="undefined"){(function(a){jQuery.fn.replacemail=function(b){var c={atSymbol:" [AT] ",domain:window.location.domain,domainString:"this domain",className:"email"},b=a.extend(c,b);return this.each(function(){var k=a(this);var i=k.text().toLowerCase();var d=b.atSymbol.toLowerCase();if(i.indexOf(d)>0){var j=i.substring(0,i.indexOf(d)).replace(/^\s+|\s+$/g,"");var f=i.substring(i.length,(i.indexOf(d)+d.length)).replace(/^\s+|\s+$/g,"");var h=b.domain;if(f!==window.location.domain&&f!==b.domainString){h=f}var e=j+"&#64;"+h;var g="<a href='mailto:"+e+"' class='"+b.className+"'>"+e+"</a>";k.replaceWith(g)}})}})(jQuery)};
