var D=YAHOO.util.Dom;var E=YAHOO.util.Event;Static={};Squarespace=window.Squarespace||{};Squarespace.Interaction={};Squarespace.Constants={POPUPS_DISABLED_MESSAGE:"It appears that you may have a popup blocker enabled that is preventing Squarespace from opening a new window. You should either disable your popup blocker, or explicitly allow this site to create popups.\n\nMore information on this problem is available in the Troubleshooting area of the FAQ from our front website.",UNSAVED_CHANGES_MESSAGE:"Are you sure you wish to navigate away from this page?\n\nYou have unsaved changes. These changes will be lost if you leave this page\n\nPress OK to continue, or Cancel to stay on the current page.",NO_SAVE_WARNING:"Warning! Some dynamic changes have not been saved, as your request has failed to reach the server. You might want to check your connection to the internet before proceeding with more changes.",ASYNC_FAIL_WARNING:"Unable to complete connection. Some data may not have been properly sent to the server.",BROWSER_UPGRADE:'Internet Explorer 6 is not supported.

Squarespace is an advanced web application that can not be deployed to web browsers that were released almost 7 years ago (IE6 was released in 2001). While we do not support system logins from IE6, all Squarespace accounts will be guaranteed to be readable from IE6 browsers for the foreseeable future.

Please install any modern web browser. This includes Internet Explorer 7+, Safari 3+, Firefox 2+ or Opera 9+ to log into Squarespace.

Click here to download Firefox (Free/Recommended) »
Click here to download Safari (Free) »
Click here to download IE7 (Free) »',BROWSER_UPGRADE_WARN:'Internet Explorer 6 is not fully supported.

While we do allow you to log in to this site using IE6, many editing functions will not work, and the site may appear slightly visually distorted.

Please install any modern web browser. This includes Internet Explorer 7+, Safari 3+, Firefox 2+ or Opera 9+ to log into Squarespace.

Click here to download Firefox (Free/Recommended) »
Click here to download Safari (Free) »
Click here to download IE7 (Free) »',BROWSER_UPGRADE_ALERT:"Internet Explorer 6 is not supported.\n\nSquarespace is an advanced web application that can not be deployed to web browsers that were released almost 7 years ago (IE6 was released in 2001).\n\nPlease install any modern web browser in order to use our editor. This includes Internet Explorer 7+, Safari 3+, Firefox 2+ or Opera 9+",DEGRADED_EXPERIENCE:(YAHOO.env.ua.ie>0),MODERN_EXPERIENCE:(YAHOO.env.ua.webkit>0),USE_GLOBAL_LIGHTBOX:false,SS_AUTHKEY:"X",VERSION_6_LAYOUT:false,HELP_SITE_URL:"https://5help.squarespace.com/",HELP_SITE_AUTHED_URL:"/display/configuration/HelpSsoAuth"};var Class={create:function(A){var B;if(A.initialize){B=function(){this.initialize.apply(this,arguments);};}else{B=function(){};}B.prototype=A;B.extend=function(C){return Class.extend(this,C);};B.prototype.loadProperties=function(F,C){this.properties=F;for(key in C){this.properties[key]=C[key];}};return B;},extend:function(A,B){var C=Class.create(B);for(property in A.prototype){if(!C.prototype[property]){C.prototype[property]=A.prototype[property];}}return C;}};Function.prototype.bind=function(I,N,M,L,J,H,G,F,C,B,A){var K=this;return function(){K.apply(I,[N,M,L,J,H,G,F,C,B,A]);};};Function.prototype.bindEventListener=function(I,N,M,L,J,H,G,F,C,B,A){var K=this;return function(O){return K.call(I,O||window.event,N,M,L,J,H,G,F,C,B,A);};};function bind(I,O,N,M,L,J,H,G,F,C,B,A){var K=O;return function(){K.apply(I,[N,M,L,J,H,G,F,C,B,A]);};}Squarespace.URL={reload:function(B,A){if(!B){B=window;}var C=Squarespace.URL.cleanUrl(B.location.href);C=Squarespace.URL.adjustQueryParameter(C,"SSScrollPosition",D.getDocumentScrollTop(B.document));C=Squarespace.URL.adjustQueryParameter(C,"VK",parseInt(Math.random()*99999999));if(A){C=A(C);}B.location.href=C;},getServerName:function(){var A=document.location.href.indexOf("://");return(document.location.href.substring(0,document.location.href.indexOf("/",A+3)));},removeDirectUrlPrefix:function(A){var B=Squarespace.URL.getServerName();if(A.startsWith(B)){return(A.substring(B.length));}else{return(A);}},cleanUrl:function(A){A=A.replace(new RegExp("(\\?|\\&)(firstLogin|SSLoginOk)=true","g"),"");if(A.indexOf("?")==-1&&A.indexOf("&")!=-1){A=A.replace(/&/,"?");}var B=A.indexOf("#");return(B==-1?A:A.substring(0,B));},adjustQueryParameter:function(B,A,C){if(B.match(new RegExp("(\\?|\\&)"+A+"=([^&]*)","g"))){B=B.replace(new RegExp("(\\?|\\&)"+A+"=([^&]*)","g"),"$1"+A+"="+C);}else{if(B.indexOf("?")==-1){B=B+"?"+A+"="+C;}else{B=B+"&"+A+"="+C;}}return(B);},removeQueryParameter:function(B,A){if(B.match(new RegExp("(\\?|\\&)"+A+"=([^&]*)","g"))){B=B.replace(new RegExp("(\\?|\\&)"+A+"=([^&]*)","g"),"");}if(B.indexOf("?")==-1&&B.indexOf("&")!=-1){B=B.replace(/&/,"?");}return(B);},constructUrlParameters:function(B){var A="";for(i in B){if(A.length>0){A+="&";}A+=i;A+="=";A+=encodeURIComponent(B[i]);}return(A);},fastCall:function(A,C,B){YAHOO.util.Connect.asyncRequest("POST",A,{timeout:(B?B:10000),success:(C?C:function(F){}),failure:function(F){alert(Squarespace.NO_SAVE_WARNING);}});},_parseLevelToArray:function(A){var B=[];var C=A.firstChild;while(C!=null){if(C.firstChild!=null&&C.firstChild.childNodes.length>0){B.push(this._parseLevelToObject(C));}else{if(C.firstChild!=null){B.push(C.firstChild.data);}}C=C.nextSibling;}return(B);},_parseLevelToObject:function(A){var B={};var C=A.firstChild;while(C!=null){if(C.firstChild==null){B[C.tagName]=[];}else{if(C.firstChild.childNodes.length>0){B[C.tagName]=this._parseLevelToArray(C);}else{if(C.firstChild!=null){B[C.tagName]=C.firstChild.data;}}}C=C.nextSibling;}return(B);},getObjectFromXML:function(A){return(this._parseLevelToObject(A.responseXML.documentElement));},loadContentBackground:function(A){var B=document.createElement("iframe");D.setStyle(B,"visibility","visible");D.setStyle(B,"height","1px");D.setStyle(B,"width","1px");D.setStyle(B,"opacity","0");document.body.appendChild(B);B.src=A;},loadContent:function(targetElement,url,customTimeout){YAHOO.util.Connect.asyncRequest("GET",url,{timeout:(customTimeout?customTimeout:20000),failure:function(o){if(o.status==-1){alert(Squarespace.Constants.ASYNC_FAIL_WARNING);}},success:function(o){var textPortion=o.responseText;var scripts=[];while(true){var sidx=textPortion.indexOf("