function wopen(B,D,A){var C=window.open(B,D,A);C.focus()}com.csg.AtoZ=com.csg.Class.extend({rootNode:null,navigation_:null,title_:null,list_:null,link_:null,initialize:function(B){var C=this,D,A;C.rootNode=$(B);C.navigation_=$("ul#selectorNav li a");C.navigation_.eq(0).parent("li").addClass("current");C.title_=C.rootNode.find("h2");C.list_=C.rootNode.find("ul");C.link_=C.rootNode.find("a");C.title_.hide();C.list_.hide();C.link_.hide();C.title_.eq(0).show();C.list_.eq(0).show();$("ul.selector-list:visible").eq(0).addClass("last-child");C.list_.eq(0).find("a").show();C.navigation_.click(function(){D=$("ul#selectorNav li a").index(this);A=$("ul#selectorNav li a").length;C.navigation_.parent("li").removeClass("current");C.navigation_.eq(D).parent("li").addClass("current");C.title_.hide();C.list_.hide();C.link_.hide();if(D+1!==A){C.title_.eq(D).show();C.list_.eq(D).show();$("ul.selector-list").removeClass("last-child");$("ul.selector-list:visible").eq(0).addClass("last-child");C.list_.eq(D).find("a").show()}else{C.title_.show();C.list_.show();$("ul.selector-list:visible").removeClass("last-child");$("div#indexNav ul").filter("ul.selector-list:last").addClass("last-child");C.link_.show()}}).attr("href","javascript:void(0)")}});$(document).ready(function(){$("div#indexNav").each(function(){new com.csg.AtoZ(this)});com.csg.Page.addBrowserFixStyleSheet("atoz")});