var TWP=window.TWP||{};
TWP={version:"1.0.0",debug:false,registry:[],namespace:function(ns){if(!ns||!ns.length){return null;
}var twp_2=ns.split(".");
var twp_3=TWP;
for(var i=(twp_2[0]=="TWP")?1:0;
i<twp_2.length;
++i){twp_3[twp_2[i]]=twp_3[twp_2[i]]||{};
twp_3=twp_3[twp_2[i]];
}return twp_3;
},createObject:function(parent){var F=function(){};
F.prototype=parent||{};
return new F();
},register:function(name,objClass){if(!this.registry[name]){this.registry[name]={};
}var module=this.registry[name];
module.name=name;
module.objClass=objClass;
TWP.log(name+" added to registry.");
},get:function(name){var temp=TWP.registry[name].objClass;
if(typeof temp=="object"){return temp;
}return new temp();
},requestDebug:function(){if(window.location.href.indexOf("debug=true")!=-1){this.debug=true;
}},showInfo:function(){},log:function(message,exceptionObject){if(this.debug&&console){if(exceptionObject){console.log(message+" %o",exceptionObject);
}else{console.log(message);
}}}};
TWP.requestDebug();
TWP.namespace("Util");
TWP.namespace("Plugin");
TWP.namespace("Page");
TWP.namespace("Module");
TWP.Util={version:"1.0.0"};
TWP.Module={version:"1.0.0",counter:1000,referenceNameLookup:[],get:function(name,args){try{var self=TWP.Module;
var ref=name+"."+self.getUID();
var temp=TWP.registry[name];
var obj=temp.objClass;
if(temp.instance==undefined){temp.instance=[];
}var instance=new obj(args);
instance.instanceId=ref;
temp.instance[ref]=instance;
self.referenceNameLookup[ref]=name;
return instance;
}catch(e){TWP.log("Error getting a new instance for "+name,e);
}},getInstance:function(instanceId){return TWP.registry[this.references[instanceId]].instance[instanceId];
},getUID:function(){return this.counter++;
}};
TWP.Util.HeaderDetection=function(){this.setUserAgent(navigator.userAgent);
this.getCssClass();
};
TWP.Util.HeaderDetection.prototype={chrome:false,opera:false,firefox:false,firefox2:false,firefox3:false,firefox3_5:false,ie:false,ie6:false,ie7:false,ie8:false,mozilla:false,safari:false,safari3:false,safari4:false,windows:false,mac:false,linux:false,getCssClass:function(){if(document.getElementById&&document.createTextNode){var n=document.body;
if(!n||n==undefined||n==null||n.length==0){setTimeout(function(){var o=TWP.get("Util.HeaderDetection");
o.getCssClass();
},250);
return ;
}}else{TWP.log("Browser doesn't support document.getElementById()");
return ;
}this.addClass("javascript");
if(this.windows){this.addClass("windows");
}else{if(this.mac){this.addClass("mac");
}else{if(this.linux){this.addClass("linux");
}}}if(this.ie){this.addClass("ie");
if(this.ie8){this.addClass("ie8");
}else{if(this.ie7){this.addClass("ie7");
}else{if(this.ie6){this.addClass("ie6");
}}}}else{if(this.firefox){this.addClass("firefox");
if(this.firefox3_5){this.addClass("firefox3-5");
}else{if(this.firefox3){this.addClass("firefox3");
}else{if(this.firefox2){this.addClass("firefox2");
}}}}else{if(this.safari){this.addClass("safari");
if(this.safari4){this.addClass("safari4");
}else{if(this.safari3){this.addClass("safari3");
}}}else{if(this.chrome){this.addClass("chrome");
}else{if(this.opera){this.addClass("opera");
}else{if(this.mozilla){this.addClass("mozilla");
}}}}}}},isChrome:function(){return this.chrome;
},isOpera:function(){return this.opera;
},isFirefox:function(){return this.firefox;
},isFirefox2:function(){return this.firefox2;
},isFirefox3:function(){return this.firefox3;
},isFirefox3_5:function(){return this.firefox3_5;
},isIe:function(){return this.ie;
},isIe6:function(){return this.ie6;
},isIe7:function(){return this.ie7;
},isIe8:function(){return this.ie8;
},isMozilla:function(){return this.mozilla;
},isSafari:function(){return this.safari;
},isSafari3:function(){return this.safari3;
},isSafari4:function(){return this.safari4;
},isWindows:function(){return this.windows;
},isMac:function(){return this.mac;
},isLinux:function(){return this.linux;
},setUserAgent:function(ua){this.userAgent=ua;
var u=ua.toLowerCase();
var t="";
var v="";
if(u.indexOf("msie")!=-1){this.ie=true;
t=u.substring(u.indexOf("msie"),u.length);
v=t.substring(4,t.indexOf(";"));
v=this.trim(v);
if(v.charAt(0)=="6"){this.ie6=true;
}else{if(v.charAt(0)=="7"){this.ie7=true;
}else{if(v.charAt(0)=="8"){this.ie8=true;
}}}}else{if(u.indexOf("firefox")!=-1){this.firefox=true;
t=u.substring(u.indexOf("firefox"));
v=t.substring(8);
v=this.trim(v);
if(v.charAt(0)=="2"){this.firefox2=true;
}else{if(v.charAt(0)=="3"){if(v.match("^3.5")=="3.5"){this.firefox3_5=true;
}else{this.firefox3=true;
}}}}else{if(u.indexOf("safari")!=-1){this.safari=true;
t=u.substring(u.indexOf("version/"));
v=t.substring(8);
v=this.trim(v);
if(v.charAt(0)=="3"){this.safari3=true;
}else{if(v.charAt(0)=="4"){this.safari4=true;
}}}else{if(u.indexOf("chrome")!=-1){this.chrome=true;
}else{if(u.indexOf("opera")!=-1){this.opera=true;
}else{if(u.indexOf("mozilla")!=-1){this.mozilla=true;
}}}}}}if(u.indexOf("windows")!=-1){this.windows=true;
}else{if(u.indexOf("macintosh")!=-1){this.mac=true;
}else{if(u.indexOf("linux")!=-1){this.linux=true;
}}}},addClass:function(c){if(document.getElementById&&document.createTextNode){var n=document.body;
if(n){n.className+=n.className?" "+c:c;
}}},trim:function(str){return(str.replace(/^[\s\xA0]+/,"").replace(/[\s\xA0]+$/,""));
}};
TWP.register("Util.HeaderDetection",new TWP.Util.HeaderDetection());
TWP.Util.HTML5IEFix=function(args){var btd=TWP.get("Util.HeaderDetection");
if(btd.isIe()){this.tags=this.tagsString.split(",");
this.tags=this.tags.concat(this.customTagsString.split(","));
this.fix();
}};
TWP.Util.HTML5IEFix.prototype={customTagsString:"by,clear,column,content,display-block,pill",tagsString:"abbr,article,aside,audio,bb,canvas,datagrid,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video",fix:function(){var i=this.tags.length;
while(i--){document.createElement(this.tags[i]);
}}};
TWP.register("Util.HTML5IEFix",new TWP.Util.HTML5IEFix());
TWP.Util.TWPUser=function(args){this.options=args||{};
this.readCookie();
this.placeCookie();
};
TWP.Util.TWPUser.prototype={version:"1.0.0",cookieUser:null,signedIn:false,twpUserName:null,userType:"washington-post",getCookieUser:function(){return this.cookieUser;
},getTwpUserName:function(){return this.twpUserName;
},isFacebookUser:function(){if(this.userType=="facebook-connect"){return true;
}return false;
},isSignedIn:function(){return this.signedIn;
},readCookie:function(){var start=-1;
var end=-1;
if(document.cookie.indexOf("fbuname")!=-1){this.userType="facebook-connect";
this.signedIn=true;
start=(document.cookie.indexOf("fbuname")+8);
end=(document.cookie.indexOf(";",start))==-1?document.cookie.length:document.cookie.indexOf(";",start);
this.twpUserName=document.cookie.substring(start,end);
}else{if(document.cookie.indexOf("wpniuser")!=-1){this.userType="washington-post";
this.signedIn=true;
start=(document.cookie.indexOf("wpniuser")+9);
end=(document.cookie.indexOf(";",start))==-1?document.cookie.length:document.cookie.indexOf(";",start);
this.cookieUser=document.cookie.substring(start,end);
if(this.cookieUser.indexOf("@")!=-1){this.twpUserName=this.cookieUser.substring(0,this.cookieUser.indexOf("@"));
}else{this.twpUserName=this.cookieUser;
}}}},placeCookie:function(){var upc_url=new String(document.location.href);
if(upc_url.indexOf(".washingtonpost.com")>-1){var c=document.cookie;
var pos=c.indexOf("WPNIUCID");
if(pos==-1){var d=new Date();
var i="WPNI"+d.getTime()+"."+Math.round(Math.random()*10000);
d.setTime(d.getTime()+31104000000);
document.cookie="WPNIUCID="+i+"; expires="+d.toGMTString()+"; path=/; domain=.washingtonpost.com";
}}}};
TWP.register("TWP-User",new TWP.Util.TWPUser());
Interval=function(delay){this.delay=delay||1000;
this.timeout=null;
this.bindable=jQuery(this);
};
Interval.prototype.listen=function(event,callback){this.bindable.bind(event,callback);
};
Interval.prototype.setDelay=function(delay){this.delay=delay;
};
Interval.prototype.start=function(now){if(!this.timeout){this.scheduleUpdate();
}};
Interval.prototype.restart=function(now){this.stop();
this.start();
};
Interval.prototype.stop=function(now){if(this.timeout){clearTimeout(this.timeout);
this.timeout=undefined;
}};
Interval.prototype.scheduleUpdate=function(){var self=this;
this.timeout=setTimeout(function(){self.scheduleUpdate();
self.execute();
},this.delay);
};
Interval.prototype.execute=function(){this.bindable.trigger("run");
};
TWP.register("Util.Interval",Interval);
TWP.Module.Header=function(args){this.defaultOptions={env:"live",type:"internal",write:true,selector:"div#wrapper",loadHttpRequest:false,preferencesUrl:"http://www.washingtonpost.com/ac2/wp-dyn?node=admin/registration/manage&destination=manage&nextstep=gather",signOutUrl:"http://www.washingtonpost.com/ac2/wp-dyn?node=admin/registration/login&destination=logout&nextstep=confirm"};
this.options=$.extend(this.defaultOptions,args);
this.createCssSaveVersion();
this.twpUser=TWP.get("TWP-User");
if(this.options.write){this.placeHeader();
}};
TWP.Module.Header.prototype={version:"1.6.0",createCssSaveVersion:function(){this.cssSafeVersion=this.version.replace(".","-","g");
},fixIE:function(){if($.browser.msie&&$.browser.version=="6.0"){$("#navigation>ul>li").hover(function(){$(this).addClass("hover");
$(this).height(31);
$(this).find("div").show();
},function(){$(this).removeClass("hover");
$(this).find("div").hide();
});
}},isStylePresent:function(){if(document.styleSheets){for(var s=0;
s<document.styleSheets.length;
s++){try{var rules;
if(document.styleSheets[s].cssRules){rules=document.styleSheets[s].cssRules;
}else{if(document.styleSheets.rules){rules=document.styleSheets[s].rules;
}else{continue;
}}for(var r=0;
r<rules.length;
r++){if(rules[r].selectorText.indexOf(".wp-global-header.wp-v"+this.cssSafeVersion)>-1){return true;
}}}catch(e){if(TWP.debug){TWP.log("Error reading StyleSheet: "+document.styleSheets[s].href,e);
}}}}return false;
},loadStyle:function(){document.write('<link href="http://media3.washingtonpost.com/wpost/css/header/twp-header-1.6.0.css" rel="stylesheet" type="text/css" />');
},placeEnvironmentHeader:function(){if(this.options.env!="live"&&this.options.env!="prod"){$(this.options.selector).prepend('<div class="wp-environment-header"><div>Testing - '+this.options.env+" - Testing</div></div>");
}},placeHeader:function(){var isStylePresent=this.isStylePresent();
if(!isStylePresent){this.loadStyle();
}if(!this.options.loadHttpRequest){this.placeEnvironmentHeader();
this.write();
}else{this.request();
}},request:function(){var self=this;
$.get("/wpost/tmpl/header/twp-"+this.options.type+"-"+this.version+".tmpl",function(data,status){self.requestProcess(data,status);
},"html");
},requestProcess:function(data,status){TWP.log(this.options.selector);
data=data.replace(/<script(.|\n|\r|\r\n)*?<\/script>/g,"");
$(this.options.selector).prepend(data);
this.setupUserState();
this.placeEnvironmentHeader();
this.fixIE();
},setupUserState:function(){var self=this;
var $ut=$(".wp-global-header div.row0 ul.user-tools");
if($ut.length==0){setTimeout(function(){self.setupUserState();
},300);
return ;
}if(this.twpUser.isSignedIn()){$ut.html("");
if(this.twpUser.isFacebookUser()){$ut.append('<li class="first facebook-connect welcome">&raquo; Hello '+this.twpUser.getTwpUserName()+"</li>");
}else{$ut.append('<li class="first washington-post welcome">&raquo; Hello <a href="http://www.washingtonpost.com/wp-srv/community/mypost/index.html?newspaperUserId='+this.twpUser.getCookieUser()+'">'+this.twpUser.getTwpUserName()+"</a></li>");
}$ut.append('<li class="prefs"><a href="'+this.options.preferencesUrl+'">Change Preferences</a></li>');
$ut.append('<li class="signout"><a href="'+this.options.signOutUrl+'">Sign Out</a></li>');
}else{var $si_url=$("li.signin a",$ut);
var $r_url=$("li.register a",$ut);
var p_url=document.location;
var href=$si_url.attr("href");
$si_url.attr("href",href+p_url);
href=$r_url.attr("href");
$r_url.attr("href",href+p_url);
}},write:function(){document.write('<div class="wp-global-header wp-v1-6-0">');
document.write(' <div class="row0 noprint">');
document.write(' <div id="top_right_text_link"><script type="text/javascript" src="http://www.washingtonpost.com/wp-srv/ad/top_right_text_link.js"><\/script></div>');
document.write(' <ul class="user-tools">');
document.write(' <li class="first signin"><a href="http://www.washingtonpost.com/ac2/wp-dyn?node=admin/registration/register&destination=login&nextstep=gather&application=reg30-globalnav&applicationURL=">Sign In</a></li>');
document.write(' <li class="register"><a href="http://www.washingtonpost.com/ac2/wp-dyn?node=admin/registration/register&destination=register&nextstep=gather&application=reg30-globalnav&applicationURL=">Register</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(' <div class="row1">');
document.write(' <h5><a href="http://www.washingtonpost.com?nav=globalTop">The Washington Post</a></h5>');
document.write(' <div class="block tiffany noprint adslug" id="slug_tiffany_tile">');
document.write(' <div class="ad verticle-sm">');
document.write(' <script type="text/javascript">');
document.write(" try {");
document.write(" placeAd2(commercialNode,'tiffany_tile',false,'');");
document.write(" } catch (e) {}");
document.write(" <\/script>");
document.write(" </div>");
document.write(" </div>");
document.write(' <div class="block post noprint">');
document.write(' <h2><a href="http://www.washingtonpost.com/wp-dyn/content/print/?nav=globaltop">Today\'s Newspaper</a></h2>');
document.write(" <ul>");
document.write(' <li class="first"><a href="https://subscription.washpost.com/subscriberservices/subscriber.portal?state=welcome&oscode=rpwc">Subscribe</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/registration/postpoints/">Post Points</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </div>");
document.write(' <div class="ie6adfix row2 noprint adslug" id="slug_leaderboard">');
document.write(' <div class="ad leaderboard verticle center">');
document.write(' <script type="text/javascript">');
document.write(" try {");
document.write(" placeAd2(commercialNode,'leaderboard',false,'');");
document.write(" } catch (e) {}");
document.write(" <\/script>");
document.write(" </div>");
document.write(" </div>");
document.write("</div>");
document.write('<div id="navigation" class="noprint">');
document.write(' <ul class="right">');
document.write(' <li><a href="http://www.washingtonpost.com/wl/jobs/home/?nid=top_jobs"><span>Jobs</span></a>');
document.write(' <div class="two-column">');
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/wl/jobs/home?nid=roll_findajob">Find a Job</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wl/jobs/Content?Content=/Career_Advice/experts/?nid=roll_expertadvice">Get Expert Advice</a></li>');
document.write(" </ul>");
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/wl/jobs/EU_Select?nid=roll_postajob">Post a Job</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wl/jobs/EU_Login?nid=roll_emplogin">Employer Login</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/cars/?nid=top_cars"><span>Cars</span></a>');
document.write(' <div class="three-column">');
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/cars/buy/?nid=roll_buyacar">Buy a Car</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/cars/buy/usedcarspecials.html?nid=roll_dealerspecial">Dealer Special</a></li>');
document.write(" </ul>");
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/cars/sell/?nid=roll_sellacar">Sell a Car</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/cars/buy/usedcarspecials.html?nid=roll_dealerspecial">Used Car Specials</a></li>');
document.write(" </ul>");
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/cars/experts/?nid=roll_expertadvice">Expert &amp; Advice</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/cars/coupons/?nid=roll_coupon">Coupons</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/?nid=top_realestate"><span>Real Estate</span></a>');
document.write(' <div class="three-column">');
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/dc-buy-home.html?nid=roll_buyhome">Buy a Home</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/ac2/wp-dyn/admin/homepricereports?includePage=/jsp/hsales/html/advancedSearch.jsp?nid=roll_propvalues">Recent&nbsp;Home&nbsp;Sales</a></li>');
document.write(" </ul>");
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/dc-sell-home.html?nid=roll_sellhome">Sell a Home</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/tools-calculators.html?nid=roll_toolscalculators">Tools and Calculators</a></li>');
document.write(" </ul>");
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/local-explorer?nid=roll_neighborhoods">Neighborhoods</a></li>');
document.write(' <li><a href="http://voices.washingtonpost.com/local-address/?nid=roll_localaddress">Local Address</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/dc-apartments-rentals.html?nid=top_rentals"><span>Rentals</span></a>');
document.write(' <div class="two-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/dc-apartments-rentals.html?nid=roll_findrental">Find a Rental</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/dc-apartments-rentals/rent-your-place.html?nid=roll_rentplace">Rent Your Place</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li class="last"><a href="http://www.washingtonpost.com/classifieds?nid=roll_calssifieds"><span>Classifieds</span></a>');
document.write(' <div class="three-column">');
document.write(' <ul class="col">');
document.write(' <li><a href="http://mypublicnotices.com/washingtonpost/PublicNotice.asp?nid=roll_classifieds">Legal Notices</a></li>');
document.write(' <li><a href="http://mypublicnotices.com/washingtonpost/PublicNotice.asp?nid=roll_classifieds">Trustee Sales</a></li>');
document.write(' <li><a href="http://www.legacy.com/washingtonpost/deathnotices.asp?page=ArchiveSearch&Cobrand=washingtonpost&nid=roll_classifieds">Death Notices</a></li>');
document.write(" </ul>");
document.write(' <ul class="col">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-adv/shopping/front.html?nid=top_shopping">Shopping</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/dealsdiscount/main/?nid=roll_classifieds">Deals &amp; Discounts</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-adv/shopping/used/front.html?nid=roll_classifieds">Used Stuff</a></li>');
document.write(" </ul>");
document.write(' <ul class="col">');
document.write(' <li><a href="http://commerce.washingtonpost.com/wp-adv/classifieds/search/petsForm.html?nid=roll_pets">Pets</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/admin/classifieds/index.html?nid=roll_classifieds">More Classifieds</a></li>');
document.write(' <li><a href="https://classified.washpost.com/advportal/css.portal?_nfpb=true&_pageLabel=cssAds&nid=roll_classifieds">Place an Ad</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(" </ul>");
document.write(" <ul>");
document.write(' <li class="first">');
document.write(' <a href="http://www.washingtonpost.com/?nid=top_news"><span>News</span></a>');
document.write(' <div class="four-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/nation/?nid=roll_nation">Nation</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/world/?nid=roll_world">World</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/metro/?nid=roll_metro">Metro</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://voices.washingtonpost.com/washingtonpostinvestigations/?nid=roll_investigations">Investigations</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/education/?nid=roll_education">Education</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/health/?nid=roll_health">Health</a></li>');
document.write(" </ul>");
document.write(' <ul class="col3">');
document.write(' <li><a href="http://www.washingtonpost.com/photo/?nid=roll_photovid">Photos &amp; Video</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/artsandliving/entertainmentnews/?nid=roll_entertain">Entertainment</a></li>');
document.write(' <li><a href="http://blog.washingtonpost.com/?nid=roll_newscolblogs">Columns &amp; Blogs</a></li>');
document.write(" </ul>");
document.write(' <ul class="col4">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/discussions/index.html?nid=roll_discuss">Discussions</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/linkset/2005/04/25/LI2005042500027.html?nid=roll_corrections">Corrections</a></li>');
document.write(' <li><a href="http://specials.washingtonpost.com/in/innovation-news/?nid=roll_innovations">Innovations</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/politics/?nid=top_politics"><span>Politics</span></a>');
document.write(' <div class="three-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/politics/politics_columnists.html?nid=roll_politicsblogs">Politics Blogs</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/politics/congress/?nid=roll_congress">Congress</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/politics/polls/?nid=roll_polls">Polls</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://projects.washingtonpost.com/congress/?nid=roll_housesenvote">House/Senate Votes</a></li>');
document.write(' <li><a href="http://voices.washingtonpost.com/political-browser/?nid=roll_politicalbrowser">Political Browser</a></li>');
document.write(' <li><a href="http://voices.washingtonpost.com/political-browser/?nid=roll_politicalbrowser">The Fed Page</a></li>');
document.write(" </ul>");
document.write(' <ul class="col3">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/politics/administration/?nid=roll_whitehouse">White House</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/politics/special/?nid=roll_indepth">In Depth</a></li>');
document.write(' <li class="inlineHyperlink">');
document.write(' <a href="http://www.washingtonpost.com/wp-dyn/content/metro/special/8/?nid=roll_dcpolitics" class="first">DC</a>');
document.write(" |");
document.write(' <a href="http://www.washingtonpost.com/wp-dyn/content/metro/special/2?nid=roll_mdpolitics">MD</a>');
document.write(" |");
document.write(' <a href="http://www.washingtonpost.com/wp-dyn/content/metro/special/7?nid=roll_vapolitics">VA</a>');
document.write(" </li>");
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/opinions/?nid=top_opinions"><span>Opinions</span></a>');
document.write(' <div class="two-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/opinions/?nid=roll_opinmain">Opinions Home</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/opinions/columnsandblogs/?nid=roll_localopinion">Local Opinions</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/opinions/cartoonsandvideos/toles_main.html?nid=roll_toonsvid">Toles Cartoons</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/opinions/cartoonsandvideos/telnaes/telnaes_main.html?nid=roll_telnaes">Telnaes Animations</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://www.washingtonpost.com/outlook/?nid=roll_outlook">Outlook</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/discussions/index.html?nid=roll_discussions">Discussions</a></li>');
document.write(' <li><a href="http://newsweek.washingtonpost.com/onfaith/index.html?nid=roll_onfaith">On Faith</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/?nid=top_business"><span>Business</span></a>');
document.write(' <div class="four-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/?nid=roll_business">Business and Policy</a></li>');
document.write(' <li><a href="http://voices.washingtonpost.com/economy-watch/?nid=roll_business">Economy Watch</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/international/index.html?nid=roll_business">Global Economy</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/localbusiness/index.html?nid=roll_business">Local Business</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/technology?nid=roll_business">Technology</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/personalfinance/index.html?nid=roll_business">Personal Finance</a></li>');
document.write(" </ul>");
document.write(' <ul class="col3">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/smallbusiness/index.html?nid=roll_business">Entrepreneurship</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/columnists/index.html?nid=roll_business">Columns &amp; Blogs</a></li>');
document.write(' <li><a href="http://views.washingtonpost.com/leadership/?nid=roll_business">On Leadership</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/metro/?nid=top_local"><span>Local</span></a>');
document.write(' <div class="five-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/metro/?nid=roll_metro">Metro News</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/education/?nid=roll_education">Education</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/metro/metro_columnists.html?nid=roll_localcolblogs">Columns &amp; Blogs</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/metro/dc/index.html?nid=roll_dclocal">District</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/metro/md/index.html?nid=roll_mdlocal">Maryland</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/metro/va/index.html?nid=roll_valocal">Virginia</a></li>');
document.write(" </ul>");
document.write(' <ul class="col3">');
document.write(' <li><a href="http://www.washingtonpost.com/weather/?nid=roll_weather">Weather</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/metro/traffic/index.html?nid=roll_traffic">Traffic</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/metro/crime/index.html?nid=roll_crime">Crime</a></li>');
document.write(" </ul>");
document.write(' <ul class="col4">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/metro/obituaries/index.html/?nid=roll_obituaries">Obituaries</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/local-explorer/?nid=roll_localexplorer">Local Explorer</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/metro/specials/communityhandbook/index.html?nid=roll_commguides">Community Handbook</a></li>');
document.write(" </ul>");
document.write(' <ul class="col5">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/print/community/index.html?nid=roll_extras">The Extras</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/business/localbusiness/index.html?nid=roll_localbus">Local Business</a></li>');
document.write(' <li><a href="http://yellowpages.washingtonpost.com/">Yellow Pages</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/sports/?nid=top_sports"><span>Sports</span></a>');
document.write(' <div class="four-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/sports/redskins/longterm/sectionfront/index.html?nid=roll_redskins">Redskins</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/sports/capitals/index.html?nid=roll_capitals">Capitals/NHL</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/nationals/index.html?nid=roll_caps">Nationals/MLB</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/mystics/index.html?nid=roll_mystics">Mystics/WNBA</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/dcunited/?nid=roll_dcunited">United/Soccer</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/wizards/index.html?nid=roll_nba">Wizards/NBA</a></li>');
document.write(" </ul>");
document.write(' <ul class="col3">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/colleges/index.html?nid=roll_colleges">Colleges</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/highschools/index.html?nid=roll_hs">High Schools</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/index/index.html?nid=roll_leagues_sports">Leagues &amp; Sports</a></li>');
document.write(" </ul>");
document.write(' <ul class="col4">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/sports/columns-blogs/columns.html?nid=roll_columnists">Columnists</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/sports/columns-blogs/blogs.html?nid=roll_blogs">Blogs</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/wires/index.html?nid=roll_wires">Wires</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/artsandliving/?nid=top_artsliving"><span>Arts &amp; Living</span></a>');
document.write(' <div class="five-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/style/?nid=roll_style">Style</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/artsandliving/pets/?nid=roll_pets">Pets</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/movies/?nid=roll_movies">Movies</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/television/?nid=roll_tv">Television</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/artsandliving/entertainmentnews/?nid=roll_entnews">Entertainment News</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/food/?nid=roll_food">Food &amp; Dining</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/travel/?nid=roll_travel">Travel</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/artsandliving/books/?nid=roll_books">Books</a></li>');
document.write(" </ul>");
document.write(' <ul class="col3">');
document.write(' <li><a href="http://www.washingtonpost.com/museums/?nid=roll_museums">Museums</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/fashion/?nid=roll_fashbeauty">Fashion &amp; Beauty</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/home/?nid=roll_homegarden">Home &amp; Garden</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/theater/?nid=roll_theaterdance">Theater &amp; Dance</a></li>');
document.write(" </ul>");
document.write(' <ul class="col4">');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/artsandliving/columns-blogs/index.html?nid=roll_newscolblogs">Columns &amp; Blogs</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/kidspost/?nid=roll_kidspost">KidsPost</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/magazine/?nid=roll_postmag">Post Magazine</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/horoscopes/?nid=roll_horo">Horoscopes</a></li>');
document.write(" </ul>");
document.write(' <ul class="col5">');
document.write(' <li><a href="http://www.washingtonpost.com/comics/?nid=roll_comics">Comics</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/crosswords/?nid=roll_crosswords">Crosswords</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/artsandliving/weddings/?nid=roll_weddings">Weddings</a></li>');
document.write(' <li><a href="http://www.uclick.com/client/wpc/wpdoc/?nid=roll_sudoku">Sudoku</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(' <li><a href="http://www.washingtonpost.com/gog?nid=top_gog"><span>Going Out Guide</span></a>');
document.write(' <div class="two-column">');
document.write(' <ul class="col1">');
document.write(' <li><a href="http://www.washingtonpost.com/gog/dc-restaurants.html?nid=roll_findrest">Find Restaurants</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/gog/dc-movies-theaters.html?nid=roll_findmovies">Find Movies</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/gog/dc-bars-clubs.html?nid=roll_findbarclub">Find Bars &amp; Clubs</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/gog/dc-events.html?nid=roll_findlocalevent">Find Local Events</a></li>');
document.write(" </ul>");
document.write(' <ul class="col2">');
document.write(' <li><a href="http://www.washingtonpost.com/gog/dc-visitors-guide.html?nid=roll_visitorguide">Visitors Guide</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/gog/best-bets/best-bets-dc-lists.html?nid=roll_bestbets">Best Bets</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/gog/go-out-lists.html?nid=roll_gooutlists">Go Out Lists</a></li>');
document.write(' <li><a href="http://voices.washingtonpost.com/goingoutgurus/?nid=roll_gurus">Going Out Gurus</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(" </li>");
document.write(" </ul>");
document.write("</div>");
this.setupUserState();
this.fixIE();
}};
TWP.register("TWP-Header",TWP.Module.Header);
TWP.Module.Footer=function(args){this.defaultOptions={type:"internal",write:true,selector:"div#wrapper",loadHttpRequest:false};
this.options=$.extend(this.defaultOptions,args);
this.createCssSaveVersion();
if(this.options.write){this.placeFooter();
}};
TWP.Module.Footer.prototype={version:"1.6.0",createCssSaveVersion:function(){this.cssSafeVersion=this.version.replace(".","-","g");
},getYear:function(){var dtg=new Date();
return dtg.getFullYear();
},isStylePresent:function(){if(document.styleSheets){for(var s=0;
s<document.styleSheets.length;
s++){try{var rules;
if(document.styleSheets[s].cssRules){rules=document.styleSheets[s].cssRules;
}else{if(document.styleSheets.rules){rules=document.styleSheets[s].rules;
}else{continue;
}}for(var r=0;
r<rules.length;
r++){if(rules[r].selectorText.indexOf(".wp-global-footer.wp-v"+this.cssSafeVersion)>-1){return true;
}}}catch(e){if(TWP.debug){TWP.log("Error reading StyleSheet: "+document.styleSheets[s].href,e);
}}}}return false;
},loadStyle:function(){document.write('<link href="http://media3.washingtonpost.com/wpost/css/footer/twp-footer-1.6.0.css" rel="stylesheet" type="text/css" />');
},placeFooter:function(){var isStylePresent=this.isStylePresent();
if(!isStylePresent){this.loadStyle();
}if(!this.options.loadHttpRequest){this.write();
}else{this.request();
}},request:function(){var self=this;
$.get("/wpost/tmpl/footer/twp-"+this.options.type+"-"+this.version+".tmpl",function(data,status){self.requestProcess(data,status);
},"html");
},requestProcess:function(data,status){TWP.log(this.options.selector);
data=data.replace(/<script(.|\n|\r|\r\n)*?<\/script>/g,"");
$(this.options.selector).append(data);
this.updateYear();
},updateYear:function(){var self=this;
var $o=$(".wp-global-footer li.copyright span");
if($o.length==0){setTimeout(function(){self.updateYear();
},300);
return ;
}$o.html(this.getYear());
},write:function(){document.write('<div class="wp-global-footer noprint wp-v1-6-0">');
document.write(' <div class="ie6adfix row0 noprint adslug" id="slug_leaderboard_2">');
document.write(' <div class="ad leaderboard verticle center">');
document.write(' <script type="text/javascript">');
document.write(" try {");
document.write(" placeAd2(commercialNode,'leaderboard|2',false,'');");
document.write(" } catch (e) {}");
document.write(" <\/script>");
document.write(" </div>");
document.write(" </div>");
document.write(' <div class="row1">');
document.write(' <ul class="right">');
document.write(' <li class="first"><a href="http://www.washingtonpost.com/wl/jobs/home?hpid=bottomnav">Jobs</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/cars/?hpid=bottomnav">Cars</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/?hpid=bottomnav">Real Estate</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/real-estate/dc-apartments-rentals.html?hpid=bottomnav">Rentals</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/classifieds/?hpid=bottomnav">Classifieds</a></li>');
document.write(" </ul>");
document.write(" <ul>");
document.write(' <li class="first"><a href="http://www.washingtonpost.com/?hpid=bottomnav">News</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/politics/?hpid=bottomnav">Politics</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/opinions/?hpid=bottomnav">Opinions</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/opinions/?hpid=bottomnav">Business</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/metro/?hpid=bottomnav">Local</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/sports/?hpid=bottomnav">Sports</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/content/artsandliving/?hpid=bottomnav">Arts &amp; Living</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/gog/?hpid=bottomnav">Going Out Guide</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(' <div class="row2">');
document.write(' <form action="http://www.washingtonpost.com/cgi-bin/search99.pl" method="post" onsubmit="return validateSearchKeyword(\'footer\');">');
document.write(' <div class="global-search-keywords">');
document.write(' <label for="keywords-footer">Search:</label> <input type="text" name="keywords" id="keywords-footer" />');
document.write(" </div>");
document.write(' <div class="global-search-go-button">');
document.write(' <input type="image" alt="Search" width="24" height="26" src="http://media.washingtonpost.com/wp-srv/ssi/globalnav/gr/go_btn.gif" border="0" valign="bottom"/>');
document.write(" </div>");
document.write(' <fieldset title="Search Options">');
document.write(' <input type="radio" name="searchdatabase" value="news" checked="checked"/> <label for="">washingtonpost.com</label>');
document.write(' <input type="radio" name="searchdatabase" value="websearch" /> <label for="">Web</label><img src="http://media.washingtonpost.com/wp-srv/google/google-nav-search-127x22.gif" border="0" width="127" height="22" alt="Powered by Google" />');
document.write(" </fieldset>");
document.write(' <div class="global-search-archive">');
document.write(' <a href="http://pqasb.pqarchiver.com/washingtonpost/search.html">Search Archives</a>');
document.write(" </div>");
document.write(" </form>");
document.write(" </div>");
document.write(' <div class="row3">');
document.write(" <ul>");
document.write(' <li class="first"><a href="http://www.washingtonpost.com">washingtonpost.com</a>: <a href="http://www.washingtonpost.com/wp-adv/mediacenter/html/about_welcome.html">About Us</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wl/jobs/JobSearchServlet?featuredemployer=53">Work for Us</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-adv/mediakit/adinfo/">Advertisers</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/contents/">Site Map</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/ac2/wp-dyn/nsStatic">Search Terms</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/topicpages/">Topics Index</a></li>');
document.write(" <li><a href=\"javascript:void(window.open('http://www.washingtonpost.com/wp-srv/bookmark_ff.html','','toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=no,width=417,height=415,left=50,top=200,screenX=50,screenY=200'));\">Make Us Your Home Page</a></li>");
document.write(' <li><a href="http://www.mywashingtonpost.com/">mywashingtonpost.com</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/contents/mobile/mobilewebsite.html">Mobile</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-dyn/rss/index.html">RSS</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/widgets/">Widgets</a></li>');
document.write(" </ul>");
document.write(" <ul>");
document.write(' <li class="first">The Washington Post: <a href="https://subscription.washpost.com/subscriberservices/subscriber.portal?state=welcome&oscode=rpwc">Subscribe</a></li>');
document.write(' <li><a href="https://subscription.washpost.com/subscriber.portal?state=welcome">Subscriber Services</a></li>');
document.write(' <li><a href="http://washingtonpostads.com/">Advertisers</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/registration/postpoints/">PostPoints</a></li>');
document.write(' <li><a href="http://thewashingtonpost.newspaperdirect.com/">Electronic Edition</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/buyphotos">Online Photo Store</a></li>');
document.write(' <li><a href="http://www.cafepress.com/washingtonpost">The Washington Post Store</a></li>');
document.write(' <li><a href="http://www.washpost.com/">About The Post</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/post/natweekly/">National Weekly</a></li>');
document.write(" </ul>");
document.write(" <ul>");
document.write(' <li class="first">The Washington Post Company: <a href="http://www.washpostco.com/index.htm">Information and Other Post Co. Websites</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write(' <div class="row4">');
document.write(' <ul class="right">');
document.write(" <li class=\"first\"><a href=\"javascript:void(window.open('http://www.washingtonpost.com/wp-srv/admin/help/popup/frame_page.html','help',%20'width=730,height=600,scrollbars=true,toolbar=no,menubar=no,resizable=true'))\"><strong>Help</strong></a></li>");
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/contactus/index.html?nav=globebot"><strong>Contact Us</strong></a></li>');
document.write(" </ul>");
document.write(" <ul>");
document.write(' <li class="copyright first"><a href="http://www.washingtonpost.com/wp-srv/interact/longterm/talk/copy.htm?nav=globebot">&copy; Copyright</a> 1996-<span></span> The Washington Post Company</li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/interact/longterm/talk/members.htm?nav=globebot">User Agreement and Privacy Policy</a></li>');
document.write(' <li><a href="http://www.washingtonpost.com/wp-srv/contents/permissions.htm?nav=globebot">Rights and Permissions</a></li>');
document.write(" </ul>");
document.write(" </div>");
document.write("</div>");
document.write('<script src="https://WaPo.netmng.com/?aid=069" type="text/javascript" language="javascript" defer="defer"><\/script>');
this.updateYear();
}};
TWP.register("TWP-Footer",TWP.Module.Footer);
(function(jQuery){var self=null;
jQuery.fn.obox=function(o){return this.each(function(){new jQuery.obox(this,o);
});
};
jQuery.obox=function(e,o){this.options=o||{};
this.loadingImage="http://media3.washingtonpost.com/wpost/images/loading.gif";
this.closeImage="http://media3.washingtonpost.com/wpost/images/icons/icon-close.png";
this.closeImageOver="http://media3.washingtonpost.com/wpost/images/icons/icon-close-over.png";
this.windowId=this.options.windowId;
this.windowTitle=this.options.windowTitle;
this.draggable=this.options.draggable||false;
this.show_title_bar=this.options.showTitleBar||false;
this.show_background=false;
this.background_overlay_opacity=this.options.backgroundOverlayOpacity||"";
this.beforeRevealCallback=this.options.beforeRevealCallback;
this.beforeCloseClearCallback=this.options.beforeCloseClearCallback;
this.backgroundOverlayHtml='<div id="'+this.options.windowId+'-overlay" class="obox-overlay" style="display:none;">&nbsp;</div>';
this.boxHtml='                <div id="'+this.options.windowId+'" class="obox" style="display:none;">                    <div class="popup"></div>                    <div class="container">                        <div class="titleBar" style="display:none"><div class="window-actions position-right"><div class="close">&nbsp;<a href="#" rel="close"><img src="'+this.closeImage+'" height="15" width="15" alt="Close" /></a></div></div><span>'+this.options.windowTitle+'</span></div>                        <div class="content" style="display:none;"></div>                        <div class="loading"><img src="'+this.loadingImage+'"/></div>                    </div>                </div>';
this.trigr=jQuery(e);
this.windr=null;
this.rtrn=null;
this.bindr=this.options.bindTo||document;
this.init();
};
jQuery.obox.fn=jQuery.obox.prototype={obox:"1.0"};
jQuery.obox.fn.extend=jQuery.obox.extend=jQuery.extend;
jQuery.obox.fn.extend({init:function(){var self=this;
if(this.background_overlay_opacity!=""){this.show_background=true;
this.overlay=jQuery(this.backgroundOverlayHtml).appendTo("body");
this.overlay.css("opacity",this.background_overlay_opacity);
this.overlay.css("position","fixed");
if(jQuery.browser.msie&&jQuery.browser.version=="6.0"){this.overlay.css("position","absolute");
this.overlay.css("top","0px");
this.overlay.css("left","0px");
}this.overlay.css("height","100%");
this.overlay.css("width","100%");
this.overlay.css("z-index","1999998");
}this.windr=jQuery(this.boxHtml).appendTo("body");
if(this.show_background){this.windr.css("z-index","1999999");
}if(this.show_title_bar){jQuery("div.titleBar",this.windr).show();
}if(this.draggable){var opts={cursor:"move",stack:{group:".obox",min:50}};
if(this.show_title_bar){opts.handle="div.titleBar";
}this.windr.draggable(opts);
}jQuery("div.titleBar div.close a[rel='close']",this.windr).bind("click",function(){jQuery(self.bindr).unbind("close_"+self.windowId+".obox");
self.close();
return false;
});
var preload=[new Image(),new Image(),new Image()];
preload[0].src=this.loadingImage;
preload[1].src=this.closeImage;
preload[2].src=this.closeImageOver;
jQuery("div.titleBar div.window-actions a[rel='close'] img",this.windr).hover(function(){jQuery(this).attr("src",preload[2].src);
},function(){jQuery(this).attr("src",preload[1].src);
});
this.trigr.bind("click",function(){self.open();
return false;
});
this.rtrn=[new Object(),new Object()];
this.rtrn[0]=this.windr;
this.rtrn[1]=this.trigr;
jQuery(this.bindr).trigger("init.obox",this.rtrn);
},open:function(){jQuery(this.bindr).trigger("beforeOpen.obox",this.rtrn);
var self=this;
jQuery(this.bindr).bind("close_"+self.windowId+".obox",function(){jQuery(self.bindr).unbind("close_"+self.windowId+".obox");
self.close();
});
this.windr.css({top:getPageScroll()[1]+(getPageHeight()/5)});
this.windr.fadeIn("slow");
this.windr.css("left",(jQuery(window).width()/2)-(this.windr.width()/2));
this.data=fillFromHref(this.trigr.attr("href"));
jQuery(this.bindr).trigger("open.obox",this.rtrn);
this.reveal();
},reveal:function(){jQuery("div.content",this.windr).append(this.data);
jQuery(this.bindr).trigger("beforeReveal.obox",this.rtrn);
if(this.show_background){this.overlay.show();
}if(this.beforeRevealCallback){this.beforeRevealCallback(this.trigr,this.windr);
}jQuery("div.loading",this.windr).fadeOut("normal",function(){jQuery("div.content",this.windr).fadeIn("normal");
});
jQuery(this.bindr).trigger("reveal.obox",this.rtrn);
},close:function(){jQuery(this.bindr).trigger("beforeClose.obox",this.rtrn);
var self=this;
if(this.show_background){this.overlay.hide();
}this.windr.fadeOut("normal",function(){if(self.beforeCloseClearCallback!=undefined){self.beforeCloseClearCallback(this.trigr,this.windr);
}jQuery("div.content",self.windr).empty();
jQuery("div.loading",self.windr).show();
jQuery("div.content",self.windr).hide();
});
jQuery(this.bindr).trigger("close.obox",this.rtrn);
}});
function getPageScroll(){var xScroll,yScroll;
if(this.pageYOffset){yScroll=this.pageYOffset;
xScroll=this.pageXOffset;
}else{if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;
xScroll=document.documentElement.scrollLeft;
}else{if(document.body){yScroll=document.body.scrollTop;
xScroll=document.body.scrollLeft;
}}}return new Array(xScroll,yScroll);
}function getPageHeight(){var windowHeight;
if(this.innerHeight){windowHeight=this.innerHeight;
}else{if(document.documentElement&&document.documentElement.clientHeight){windowHeight=document.documentElement.clientHeight;
}else{if(document.body){windowHeight=document.body.clientHeight;
}}}return windowHeight;
}function fillFromHref(href){if(href.match(/#/)){var url=window.location.href.split("#")[0];
var target=href.replace(url,"");
return jQuery(target).clone().show().html();
}return"";
}})(jQuery);
jQuery.cookie=function(name,value,options){if(typeof value!="undefined"){options=options||{};
if(value===null){value="";
options=jQuery.extend({},options);
options.expires=-1;
}var expires="";
if(options.expires&&(typeof options.expires=="number"||options.expires.toUTCString)){var date;
if(typeof options.expires=="number"){date=new Date();
date.setTime(date.getTime()+(options.expires*24*60*60*1000));
}else{date=options.expires;
}expires="; expires="+date.toUTCString();
}var path=options.path?"; path="+(options.path):"";
var domain=options.domain?"; domain="+(options.domain):"";
var secure=options.secure?"; secure":"";
document.cookie=[name,"=",encodeURIComponent(value),expires,path,domain,secure].join("");
}else{var cookieValue=null;
if(document.cookie&&document.cookie!=""){var cookies=document.cookie.split(";");
for(var i=0;
i<cookies.length;
i++){var cookie=jQuery.trim(cookies[i]);
if(cookie.substring(0,name.length+1)==(name+"=")){cookieValue=decodeURIComponent(cookie.substring(name.length+1));
break;
}}}return cookieValue;
}};

