$(document).ready(function(){var a=GetPageLayout();switch(a){case"manageaddresses":InvertCheckboxes();ENewsSubscription(a);break;case"login":case"loginregister":case"register":ENewsSubscription(a);GetCheckboxCookie();break;case"myaccount":RemoveCheckboxCookies();break}});function InvertCheckboxes(){var b=$("div.formCheckbox input.checkboxInvert[type=checkbox]");var a=false;b.each(function(){a=$(this).attr("checked");$(this).attr("checked",!a)})}function RemoveCheckboxCookies(){var c="HabitatCBS";var b=0;for(b=1;b<=3;b++){var a=c+b;if($.cookie(a)!=null&&$.cookie(a).length>0){$.cookie(a,null,{path:"/"})}}}function ENewsSubscription(a){var b=$("div.formCheckbox input.checkboxInvert[type=checkbox]");$("input.btnCustomerMarketing").click(function(){b.each(function(){$this=$(this);var e=$this.attr("checked");var c=$this.attr("id").substr(1,1);if(a!="manageaddresses"){SetCheckboxCookie($this)}var d="input.T"+c;$(d).each(function(){if(e==false){$(this).val(c)}else{$(this).val(null)}})})})}function SetCheckboxCookie(b){var d="HabitatCB";var c=new Date();var a=c.add("mi",30);$.cookie(d+b.attr("id"),b.attr("checked"),{expires:a,path:"/",domain:"",secure:false})}function GetCheckboxCookie(){var b=GetCountryId();var c="HabitatCB";var d=false;var a=$("div.formCheckbox input.checkboxInvert[type=checkbox]");a.each(function(){$this=$(this);var e=c+$this.attr("id");if($.cookie(e)!=null&&$.cookie(e).length>0){if($.cookie(e)=="true"){$this.attr("checked",true)}else{$this.attr("checked",false)}}else{switch(b){case"fr":d=false;break;default:d=true;break}$this.attr("checked",d)}})};