var productsTimer=null;var collectionsTimer=null;var inspirationTimer=null;var resourcesTimer=null;var productsShowTimer=null;var collectionsShowTimer=null;var inspirationShowTimer=null;var resourcesShowTimer=null;var currentPage=1;var mapMarkers=[];function cssPreload(){loadCss=new Image();loadCss.src="/common/css/main.css";loadCssMin=new Image();loadCssMin.src="/common/css/main.css";loadPrintCss=new Image();loadPrintCss.src="/common/css/print.css";}function sendEmailTo(urlOfInterest,pageTitle){var firstName=$("#firstName").val();var lastName=$("#lastName").val();var toAddress=$("#toAddress").val();var fromAddress=$("#fromAddress").val();var message=$("#message").val();var ccFlag=$("#ccFlag").val();if(ccFlag=="on"){ccFlag=true;}$("#firstNameLabel").removeClass("error");$("#firstNameError").hide();$("#lastNameLabel").removeClass("error");$("#lastNameError").hide();$("#toAddressLabel").removeClass("error");$("#toAddressError").hide();$("#fromAddressLabel").removeClass("error");$("#fromAddressError").hide();$.ajax({url:"/onlinecatalog/emailToFriend.kls?firstName="+firstName+"&lastName="+lastName+"&fromAddress="+fromAddress+"&toAddress="+toAddress+"&message="+message+"&urlOfInterest="+urlOfInterest+"&pageName="+pageTitle+"&copy="+ccFlag,dataType:"json",success:function(data){if(data.emailToFriend.status=="ERROR"){$("#errorMsg").show();$.each(data.emailToFriend.errors,function(i,item){var errorPart="#"+item.message+"Error";var errorPartLabel="#"+item.message+"Label";$(errorPartLabel).addClass("error");$(errorPart).show();});}else{if(data.emailToFriend.status=="SUCCESS"){$("#emailForm").css("left","-1000px");$("#emailFormThankYou #emailFormThankYou-recipient").text(toAddress);var leftPixels=($(window).width()/2)-($("#emailFormThankYou").width()/2)-86;$("#emailFormThankYou").css("left",leftPixels+"px");var s=s_gi("kohlerkallista,kohlerglobal");s.linkTrackVars="channel,prop1,prop2,pageName,prop9,prop14,eVar26,events";s.linkTrackEvents="event11";s.prop1="KALLISTA";s.channel="KALLISTA:EMAIL CONTENT";s.prop2="KALLISTA:EMAIL CONTENT:FORM";s.pageName="KALLISTA:EMAIL CONTENT:FORM:CONFIRMATION";s.prop9="TOOLS";s.events="event11";s.prop14=urlOfInterest;s.eVar26=urlOfInterest;void (s.t());}}}});}function viewPaginated(pageNumber,totalPages){totalPages=Math.ceil(totalPages/5);$("#pageNumber").val(pageNumber);$("#pageNumberBottom").val(pageNumber);$("div.viewPageControls").show();$("div.viewPaginated").hide();if(pageNumber>0&&pageNumber<=totalPages){$(".paginatedResults").hide();$("#viewAll").hide();$("#page"+pageNumber).show();}currentPage=pageNumber;if(currentPage==1){hidePrevArrow();}else{showPrevArrow();}if(currentPage>=totalPages){hideNextArrow();}else{showNextArrow();}$(".viewAll").removeClass("viewAll").addClass("viewAll-inactive");$(".viewAll").css("font-weight","bold");$(".viewPaginated").css("font-weight","normal");$("#document-overlay").css("height",$("body").height());$.cookie("paginatedcookie","true",{expires:new Date(2025,12,31)});}function viewPrevious(totalPages){var totPages=Math.ceil(totalPages/5);if(currentPage<=1){currentPage=1;hidePrevArrow();}else{currentPage=(currentPage*1)-1;if(currentPage==(totPages-1)){showNextArrow();}if(currentPage==1){hidePrevArrow();}else{showPrevArrow();}}viewPaginated(currentPage,totalPages);}function viewNext(totalPages){var totPages=Math.ceil(totalPages/5);if(currentPage>=totPages){currentPage=totPages;hideNextArrow();}else{currentPage=(currentPage*1)+1;if(currentPage==2){showPrevArrow();}if(currentPage==totPages){hideNextArrow();}else{showNextArrow();}}viewPaginated(currentPage,totalPages);}function showPrevArrow(){$(".previous-navigationArrow").parents("a:first").css("cursor",(($.browser.msie)?"hand":"pointer"));$(".previous-navigationArrow").attr("src","/common/images/pagination-arrowLeft-off.png");}function hidePrevArrow(){$(".previous-navigationArrow").parents("a:first").css("cursor","default");$(".previous-navigationArrow").attr("src","/common/images/pagination-arrowLeft-deact.png");}function showNextArrow(){$(".next-navigationArrow").parents("a:first").css("cursor",(($.browser.msie)?"hand":"pointer"));$(".next-navigationArrow").attr("src","/common/images/pagination-arrowRight-off.png");}function hideNextArrow(){$(".next-navigationArrow").parents("a:first").css("cursor","default");$(".next-navigationArrow").attr("src","/common/images/pagination-arrowRight-deact.png");}function viewAll(totalPages){totalPages=Math.ceil(totalPages/5);$("div.viewPageControls").hide();$("div.viewPaginated").show();$(".paginatedResults").hide();$(".viewAll-inactive").removeClass("viewAll-inactive").addClass("viewAll");$("#viewAll").show();$("#document-overlay").css("height",$("body").height());$.cookie("paginatedcookie","false",{expires:new Date(2025,12,31)});}function hideMenu(name,time){eval("clearTimeout("+name+"Timer)");eval("clearTimeout("+name+"ShowTimer)");$("#"+name).find("img").attr("src",$("#"+name).find("img").attr("src").replace("-on","-off"));$("#dropdown-"+name).stop(false,true);if(time>0){$("#dropdown-"+name).slideUp(time);}else{$("#dropdown-"+name).hide();}}function hideAllMenus(time){hideMenu("products",time);hideMenu("collections",time);hideMenu("inspiration",time);hideMenu("resources",time);}function showMap(map,id,latitude,longitude,name,address1,address2,city,stateAbbr,postalCode,country){if(map!=null){map.clearOverlays();var point=new GLatLng(latitude,longitude);map.setCenter(point,13);if(mapMarkers[id]==null){var marker=new GMarker(point);var content='<div class="mapBubbleText">';content+="<p><strong>"+name+"</strong></p><p>"+address1+"</p>";if(address2!=""){content+="<p>"+address2+"</p>";}content+="<p>"+city;var addressUrlString=address1+", "+city;if(stateAbbr!=""){content+=", "+stateAbbr;addressUrlString+=", "+stateAbbr;}if(postalCode!=""){content+=" "+postalCode;addressUrlString+=" "+postalCode;}content+="</p>";if(country!=""){content+="<p>"+country+"</p>";addressUrlString+=", "+country;}addressUrlString=encodeURIComponent(addressUrlString);content+='<a href="http://maps.google.com/maps?f=d&saddr='+addressUrlString+'" target="_blank">Get Directions</a></div>';marker.bindInfoWindowHtml(content);mapMarkers[id]=marker;}map.addOverlay(mapMarkers[id]);var leftPixels=($(window).width()/2)-($("#whereToBuy-mapPopup-canvas").width()/2)+35;setTimeout("$('#whereToBuy-mapPopup-canvas').css('left','"+leftPixels+"px')",200);$("#document-overlay").show();}}(function($){$(document).ready(function(){if($.cookie("paginatedcookie")=="true"&&$("div.viewPaginated").length>1){viewPaginated(1,$("#PRODUCT_LIST").val());}$("#products").hover(function(){hideMenu("collections",0);hideMenu("inspiration",0);hideMenu("resources",0);if(productsTimer){clearTimeout(productsTimer);}productsShowTimer=setTimeout("$('#dropdown-products').slideDown(200)",250);$(this).find("img").attr("src",$(this).find("img").attr("src").replace("-off","-on"));},function(){productsTimer=setTimeout("hideAllMenus(200)",200);});$("#dropdown-products").hover(function(){hideMenu("collections",0);hideMenu("inspiration",0);hideMenu("resources",0);if(productsTimer){clearTimeout(productsTimer);}},function(){productsTimer=setTimeout("hideAllMenus(200)",200);});$("#collections").hover(function(){hideMenu("products",0);hideMenu("inspiration",0);hideMenu("resources",0);if(collectionsTimer){clearTimeout(collectionsTimer);}collectionsShowTimer=setTimeout("$('#dropdown-collections').slideDown(200)",250);$(this).find("img").attr("src",$(this).find("img").attr("src").replace("-off","-on"));},function(){collectionsTimer=setTimeout("hideAllMenus(200)",200);});$("#dropdown-collections").hover(function(){hideMenu("products",0);hideMenu("inspiration",0);hideMenu("resources",0);if(collectionsTimer){clearTimeout(collectionsTimer);}},function(){collectionsTimer=setTimeout("hideAllMenus(200)",200);});$("#inspiration").hover(function(){hideMenu("products",0);hideMenu("collections",0);hideMenu("resources",0);if(inspirationTimer){clearTimeout(inspirationTimer);}inspirationShowTimer=setTimeout("$('#dropdown-inspiration').slideDown(200)",250);$(this).find("img").attr("src",$(this).find("img").attr("src").replace("-off","-on"));},function(){inspirationTimer=setTimeout("hideAllMenus(200)",200);});$("#dropdown-inspiration").hover(function(){hideMenu("products",0);hideMenu("collections",0);hideMenu("resources",0);if(inspirationTimer){clearTimeout(inspirationTimer);}},function(){inspirationTimer=setTimeout("hideAllMenus(200)",200);});$("#resources").hover(function(){hideMenu("products",0);hideMenu("collections",0);hideMenu("inspiration",0);if(resourcesTimer){clearTimeout(resourcesTimer);}resourcesShowTimer=setTimeout("$('#dropdown-resources').slideDown(200)",250);$(this).find("img").attr("src",$(this).find("img").attr("src").replace("-off","-on"));},function(){resourcesTimer=setTimeout("hideAllMenus(200)",200);});$("#dropdown-resources").hover(function(){hideMenu("products",0);hideMenu("collections",0);hideMenu("inspiration",0);if(resourcesTimer){clearTimeout(resourcesTimer);}},function(){resourcesTimer=setTimeout("hideAllMenus(200)",200);});$(".dropdown-nav ul li a, .footerLinks ul li a").hover(function(){$(this).parent("li").addClass("link-light");},function(){$(this).parent("li").removeClass("link-light");});$("#leftnav ul li.tertiary-nav a").hover(function(){$(this).parent("li").css("background-image","url('/common/images/bullet-link.gif')");},function(){$(this).parent("li").css("background-image","url('/common/images/bullet-arrowBlack.gif')");});$("#leftnav ul li.tertiary-nav-expanded a").hover(function(){$(this).parent("li").css("background-image","url('/common/images/bullet-nextLevelExpanded-over.gif')");},function(){$(this).parent("li").css("background-image","url('/common/images/bullet-nextLevelExpanded.gif')");});$("#searchBox input").focus(function(){if($(this).val()=="Keyword or Item #"){$(this).val("");}});$("#searchBox input").blur(function(){if($(this).val()==""){$(this).val("Keyword or Item #");}});$("img.paginationArrow").hover(function(){$(this).attr("src",$(this).attr("src").replace("-off","-on"));},function(){$(this).attr("src",$(this).attr("src").replace("-on","-off"));});$("img#otherViews-close, #document-overlay").click(function(){$("#lb-otherViews").css("left","-2000px");$("link[rel*=style]").each(function(i){if($(this).attr("href").indexOf("printS7.css")>-1){$(this).attr("href","/common/css/print.css");}});$("#document-overlay").hide();});$("div.productDetails-tab").click(function(){$("div.productDetails-tab").removeClass("active");$(this).addClass("active");var tabId=$(this).attr("id");var tabName=tabId.substring(tabId.indexOf("-")+1,tabId.length);$(".productDetail-content").css("display","none");$("#productDetail-"+tabName+"Content").css("display","block");});$("a#emailFriend").click(function(){var leftPixels=($(window).width()/2)-($("#emailForm").width()/2)-86;$("#emailForm").css("left",leftPixels+"px");$("#emailFormThankYou").css("left","-1000px");$("#document-overlay").show();var s=s_gi("kohlerkallista,kohlerglobal");s.linkTrackVars="channel,prop1,prop2,pageName,prop9";s.prop1="KALLISTA";s.channel="KALLISTA:EMAIL CONTENT";s.prop2="KALLISTA:EMAIL CONTENT:FORM";s.pageName="KALLISTA:EMAIL CONTENT:FORM";s.prop9="TOOLS";void (s.t());});$("#emailForm-content img.closeEmail, #document-overlay").click(function(){$("#emailForm").css("left","-1000px");$("#document-overlay").hide();});$("#emailFormThankYou-content img, #document-overlay").click(function(){$("#emailFormThankYou").css("left","-1000px");$("#document-overlay").hide();});$("a.collection-bioLink").click(function(){var leftPixels=($(window).width()/2)-($("#designerBio-canvas").width()/2)+76;$("#designerBio-canvas").css("left",leftPixels+"px");$("#document-overlay").show();});$("img.close-collectionBio, #document-overlay").click(function(){$("#designerBio-canvas").css("left","-1830px");$("#document-overlay").hide();});$("img.close-mapPopup, #document-overlay").click(function(){$("#whereToBuy-mapPopup-canvas").css("left","-1830px");$("#document-overlay").hide();});$("div.newArrivals-tab").click(function(){$("div.newArrivals-tab").removeClass("active");$(this).addClass("active");var tabId=$(this).attr("id");$(".newArrivals-content").css("display","none");$("#newArrivals-"+tabId).css("display","block");});if(!($.browser.mozilla&&$.browser.version<"1.9.1.5")&&!($.browser.msie&&$.browser.version<"7")){$(".catalogResult-description a").hover(function(){$(this).parents("tr:first").find("a").css("color","#99610E");},function(){$(this).parents("tr:first").find("a").css("color","#000000");});}$("#pageNumber").keyup(function(){$("#pageNumberBottom").val($("#pageNumber").val());});$("#pageNumberBottom").keyup(function(){$("#pageNumber").val($("#pageNumberBottom").val());});if(location.href.indexOf("/wheretobuy/")==-1){$("#whereToBuy li").hover(function(){$(this).addClass("link-black-whereToBuy");$("#whereToBuy").css("padding","32px 10px 0 12px");},function(){$(this).removeClass("link-black-whereToBuy");$("#whereToBuy").css("padding","32px 0 0 22px");});}$(".rollover").hover(function(){var src=$(this).attr("src");$(this).attr("src",src.replace("-off","-on"));},function(){var src=$(this).attr("src");$(this).attr("src",src.replace("-on","-off"));});$("#whereToBuy-mapPopup-canvas").bgiframe();$("#dropdown-products,#dropdown-collections,#dropdown-inspiration,#dropdown-resources").bgiframe();$("#document-overlay").css("height",$(document).height());$("#document-overlay").css("width",$(document).width());});})(jQuery);function getScaledImageDimensions(w,h,maxW,maxH){var result=new Array();if(w<=maxW&&h<=maxH){result.width=w;result.height=h;return result;}var width=parseFloat(w);var height=parseFloat(h);var ratio=parseFloat(maxW)/parseFloat(maxH);var thisRatio=width/height;if(thisRatio>ratio){result.width=maxW;result.height=parseInt(height/thisRatio);}else{if(thisRatio==ratio){result.width=maxW;result.height=maxH;}else{result.width=parseInt(width*thisRatio);result.height=maxH;}}return result;}var sIFR=new function(){var O=this;var E={ACTIVE:"sIFR-active",UNLOADING:"sIFR-unloading",REPLACED:"sIFR-replaced",IGNORE:"sIFR-ignore",ALTERNATE:"sIFR-alternate",CLASS:"sIFR-class",LAYOUT:"sIFR-layout",FLASH:"sIFR-flash",FIX_FOCUS:"sIFR-fixfocus",DUMMY:"sIFR-dummy"};E.IGNORE_CLASSES=[E.REPLACED,E.IGNORE,E.ALTERNATE];this.MIN_FONT_SIZE=6;this.MAX_FONT_SIZE=126;this.FLASH_PADDING_BOTTOM=5;this.VERSION="408";this.isActive=false;this.isEnabled=true;this.fixHover=true;this.autoInitialize=true;this.setPrefetchCookie=true;this.cookiePath="/";this.domains=[];this.forceWidth=true;this.fitExactly=false;this.forceTextTransform=true;this.useDomLoaded=true;this.useStyleCheck=false;this.hasFlashClassSet=false;this.repaintOnResize=true;this.replacements=[];var L=0;var R=false;function Y(){}function D(c){function d(e){return e.toLocaleUpperCase();}this.normalize=function(e){return e.replace(/\n|\r|\xA0/g,D.SINGLE_WHITESPACE).replace(/\s+/g,D.SINGLE_WHITESPACE);};this.textTransform=function(e,f){switch(e){case"uppercase":return f.toLocaleUpperCase();case"lowercase":return f.toLocaleLowerCase();case"capitalize":return f.replace(/^\w|\s\w/g,d);}return f;};this.toHexString=function(e){if(e.charAt(0)!="#"||e.length!=4&&e.length!=7){return e;}e=e.substring(1);return"0x"+(e.length==3?e.replace(/(.)(.)(.)/,"$1$1$2$2$3$3"):e);};this.toJson=function(g,f){var e="";switch(typeof(g)){case"string":e='"'+f(g)+'"';break;case"number":case"boolean":e=g.toString();break;case"object":e=[];for(var h in g){if(g[h]==Object.prototype[h]){continue;}e.push('"'+h+'":'+this.toJson(g[h]));}e="{"+e.join(",")+"}";break;}return e;};this.convertCssArg=function(e){if(!e){return{};}if(typeof(e)=="object"){if(e.constructor==Array){e=e.join("");}else{return e;}}var l={};var m=e.split("}");for(var h=0;h<m.length;h++){var k=m[h].match(/([^\s{]+)\s*\{(.+)\s*;?\s*/);if(!k||k.length!=3){continue;}if(!l[k[1]]){l[k[1]]={};}var g=k[2].split(";");for(var f=0;f<g.length;f++){var n=g[f].match(/\s*([^:\s]+)\s*\:\s*([^;]+)/);if(!n||n.length!=3){continue;}l[k[1]][n[1]]=n[2].replace(/\s+$/,"");}}return l;};this.extractFromCss=function(g,f,i,e){var h=null;if(g&&g[f]&&g[f][i]){h=g[f][i];if(e){delete g[f][i];}}return h;};this.cssToString=function(f){var g=[];for(var e in f){var j=f[e];if(j==Object.prototype[e]){continue;}g.push(e,"{");for(var i in j){if(j[i]==Object.prototype[i]){continue;}var h=j[i];if(D.UNIT_REMOVAL_PROPERTIES[i]){h=parseInt(h,10);}g.push(i,":",h,";");}g.push("}");}return g.join("");};this.escape=function(e){return escape(e).replace(/\+/g,"%2B");};this.encodeVars=function(e){return e.join("&").replace(/%/g,"%25");};this.copyProperties=function(g,f){for(var e in g){if(f[e]===undefined){f[e]=g[e];}}return f;};this.domain=function(){var f="";try{f=document.domain;}catch(g){}return f;};this.domainMatches=function(h,g){if(g=="*"||g==h){return true;}var f=g.lastIndexOf("*");if(f>-1){g=g.substr(f+1);var e=h.lastIndexOf(g);if(e>-1&&(e+g.length)==h.length){return true;}}return false;};this.uriEncode=function(e){return encodeURI(decodeURIComponent(e));};this.delay=function(f,h,g){var e=Array.prototype.slice.call(arguments,3);setTimeout(function(){h.apply(g,e);},f);};}D.UNIT_REMOVAL_PROPERTIES={leading:true,"margin-left":true,"margin-right":true,"text-indent":true};D.SINGLE_WHITESPACE=" ";function U(e){var d=this;function c(g,j,h){var k=d.getStyleAsInt(g,j,e.ua.ie);if(k==0){k=g[h];for(var f=3;f<arguments.length;f++){k-=d.getStyleAsInt(g,arguments[f],true);}}return k;}this.getBody=function(){return document.getElementsByTagName("body")[0]||null;};this.querySelectorAll=function(f){return window.parseSelector(f);};this.addClass=function(f,g){if(g){g.className=((g.className||"")==""?"":g.className+" ")+f;}};this.removeClass=function(f,g){if(g){g.className=g.className.replace(new RegExp("(^|\\s)"+f+"(\\s|$)"),"").replace(/^\s+|(\s)\s+/g,"$1");}};this.hasClass=function(f,g){return new RegExp("(^|\\s)"+f+"(\\s|$)").test(g.className);};this.hasOneOfClassses=function(h,g){for(var f=0;f<h.length;f++){if(this.hasClass(h[f],g)){return true;}}return false;};this.ancelocationHasClass=function(g,f){g=g.parentNode;while(g&&g.nodeType==1){if(this.hasClass(f,g)){return true;}g=g.parentNode;}return false;};this.create=function(f,g){var h=document.createElementNS?document.createElementNS(U.XHTML_NS,f):document.createElement(f);if(g){h.className=g;}return h;};this.getComputedStyle=function(h,i){var f;if(document.defaultView&&document.defaultView.getComputedStyle){var g=document.defaultView.getComputedStyle(h,null);f=g?g[i]:null;}else{if(h.currentStyle){f=h.currentStyle[i];}}return f||"";};this.getStyleAsInt=function(g,i,f){var h=this.getComputedStyle(g,i);if(f&&!/px$/.test(h)){return 0;}return parseInt(h)||0;};this.getWidthFromStyle=function(f){return c(f,"width","offsetWidth","paddingRight","paddingLeft","borderRightWidth","borderLeftWidth");};this.getHeightFromStyle=function(f){return c(f,"height","offsetHeight","paddingTop","paddingBottom","borderTopWidth","borderBottomWidth");};this.getDimensions=function(j){var h=j.offsetWidth;var f=j.offsetHeight;if(h==0||f==0){for(var g=0;g<j.childNodes.length;g++){var k=j.childNodes[g];if(k.nodeType!=1){continue;}h=Math.max(h,k.offsetWidth);f=Math.max(f,k.offsetHeight);}}return{width:h,height:f};};this.getViewport=function(){return{width:window.innerWidth||document.documentElement.clientWidth||this.getBody().clientWidth,height:window.innerHeight||document.documentElement.clientHeight||this.getBody().clientHeight};};this.blurElement=function(g){try{g.blur();return;}catch(h){}var f=this.create("input");f.style.width="0px";f.style.height="0px";g.parentNode.appendChild(f);f.focus();f.blur();f.parentNode.removeChild(f);};}U.XHTML_NS="http://www.w3.org/1999/xhtml";function H(m){var d=navigator.userAgent.toLowerCase();var l=(navigator.product||"").toLowerCase();var f=navigator.platform.toLowerCase();this.parseVersion=H.parseVersion;this.macintosh=/^mac/.test(f);this.windows=/^win/.test(f);this.quicktime=false;this.opera=/opera/.test(d);this.konqueror=/konqueror/.test(l);this.ie=false
/*@cc_on||true@*/
;this.ieSupported=this.ie&&!/ppc|smartphone|iemobile|msie\s5\.5/.test(d)
/*@cc_on&&@_jscript_version>=5.5@*/
;this.ieWin=this.ie&&this.windows
/*@cc_on&&@_jscript_version>=5.1@*/
;this.windows=this.windows&&(!this.ie||this.ieWin);this.ieMac=this.ie&&this.macintosh
/*@cc_on&&@_jscript_version<5.1@*/
;this.macintosh=this.macintosh&&(!this.ie||this.ieMac);this.safari=/safari/.test(d);this.webkit=!this.konqueror&&/applewebkit/.test(d);this.khtml=this.webkit||this.konqueror;this.gecko=!this.webkit&&l=="gecko";this.ieVersion=this.ie&&/.*msie\s(\d\.\d)/.exec(d)?this.parseVersion(RegExp.$1):"0";this.operaVersion=this.opera&&/.*opera(\s|\/)(\d+\.\d+)/.exec(d)?this.parseVersion(RegExp.$2):"0";this.webkitVersion=this.webkit&&/.*applewebkit\/(\d+).*/.exec(d)?this.parseVersion(RegExp.$1):"0";this.geckoVersion=this.gecko&&/.*rv:\s*([^\)]+)\)\s+gecko/.exec(d)?this.parseVersion(RegExp.$1):"0";this.konquerorVersion=this.konqueror&&/.*konqueror\/([\d\.]+).*/.exec(d)?this.parseVersion(RegExp.$1):"0";this.flashVersion=0;if(this.ieWin){var h;var k=false;try{h=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(j){try{h=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");this.flashVersion=this.parseVersion("6");h.AllowScriptAccess="always";}catch(j){k=this.flashVersion==this.parseVersion("6");}if(!k){try{h=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(j){}}}if(!k&&h){this.flashVersion=this.parseVersion(/([\d,?]+)/.exec(h.GetVariable("$version"))[1].replace(/,/g,"."));}}else{if(navigator.plugins&&navigator.plugins["Shockwave Flash"]){this.flashVersion=this.parseVersion(navigator.plugins["Shockwave Flash"].description.replace(/\D*(\d+\.?\d*)\s*r(\d+)/,"$1$2"));var g=0;while(this.flashVersion>=H.MIN_FLASH_VERSION&&g<navigator.mimeTypes.length){var c=navigator.mimeTypes[g];if(c.type=="application/x-shockwave-flash"&&c.enabledPlugin.description.toLowerCase().indexOf("quicktime")>-1){this.flashVersion=this.parseVersion("0");this.quicktime=true;}g++;}}}this.flash=this.flashVersion>=H.MIN_FLASH_VERSION;this.transparencySupport=this.macintosh||this.windows;this.computedStyleSupport=this.ie||!!document.defaultView.getComputedStyle;this.requiresPrefetch=this.ieWin||this.khtml;this.fixFocus=this.gecko&&this.windows;this.nativeDomLoaded=this.gecko||this.webkit&&this.webkitVersion>=this.parseVersion("525")||this.konqueror&&this.konquerorMajor>this.parseVersion("03")||this.opera;this.mustCheckStyle=this.khtml||this.opera;this.forcePageLoad=this.webkit&&this.webkitVersion<this.parseVersion("523");this.properDocument=typeof(document.location)=="object";this.supported=this.flash&&this.properDocument&&(!this.ie||this.ieSupported)&&this.computedStyleSupport&&(!this.opera||this.operaVersion>=this.parseVersion("9.50"))&&(!this.webkit||this.webkitVersion>=this.parseVersion("412"))&&(!this.gecko||this.geckoVersion>=this.parseVersion("1.8.0.12"))&&(!this.konqueror);}H.parseVersion=function(c){return c.replace(/(^|\D)(\d)(?=\D|$)/g,"$10000$2");};H.MIN_FLASH_VERSION=H.parseVersion("8");function F(c){this.fix=c.ua.ieWin&&window.location.hash!="";var d;this.cache=function(){d=document.title;};function e(){document.title=d;}this.relocation=function(){if(this.fix){setTimeout(e,0);}};}function S(f){var j=null;function g(){try{if(f.ua.ie||document.readyState!="loaded"&&document.readyState!="complete"){document.documentElement.doScroll("left");}}catch(k){return setTimeout(g,10);}c();}function c(){if(f.useStyleCheck){e();}else{if(!f.ua.mustCheckStyle){h(null,true);}}}function e(){j=f.dom.create("div",E.DUMMY);f.dom.getBody().appendChild(j);d();}function d(){if(f.dom.getComputedStyle(j,"marginLeft")=="42px"){i();}else{setTimeout(d,10);}}function i(){if(j&&j.parentNode){j.parentNode.removeChild(j);}j=null;h(null,true);}function h(k,l){f.initialize(l);if(k&&k.type=="load"){if(document.removeEventListener){document.removeEventListener("DOMContentLoaded",h,false);}if(window.removeEventListener){window.removeEventListener("load",h,false);}}}this.attach=function(){if(window.addEventListener){window.addEventListener("load",h,false);}else{window.attachEvent("onload",h);}if(!f.useDomLoaded||f.ua.forcePageLoad||f.ua.ie&&window.top!=window){return;}if(f.ua.nativeDomLoaded){document.addEventListener("DOMContentLoaded",c,false);}else{if(f.ua.ie||f.ua.khtml){g();}}};}var Q="sifrFetch";function N(c){var e=false;this.fetchMovies=function(f){if(c.setPrefetchCookie&&new RegExp(";?"+Q+"=true;?").test(document.cookie)){return;}try{e=true;d(f);}catch(g){if(c.debug){throw g;}}if(c.setPrefetchCookie){document.cookie=Q+"=true;path="+c.cookiePath;}};this.clear=function(){if(!e){return;}try{var f=document.getElementsByTagName("script");for(var g=f.length-1;g>=0;g--){var h=f[g];if(h.type=="sifr/prefetch"){h.parentNode.removeChild(h);}}}catch(j){}};function d(f){for(var g=0;g<f.length;g++){document.write('<script defer type="sifr/prefetch" src="'+f[g].src+'"><\/script>');}}}function b(e){var g=e.ua.ie;var f=g&&e.ua.flashVersion<e.ua.parseVersion("9.0.115");var d={};var c={};this.register=function(h){if(!g){return;}var i=h.id;c[i]=h;delete d[i];if(f){window[i]=h;}};this.reset=function(){if(!g){return false;}for(var j=0;j<e.replacements.length;j++){var h=e.replacements[j];var k=c[h.id];if(!d[h.id]&&(!k.parentNode||k.parentNode.nodeType==11)){h.resetMovie();d[h.id]=true;}}return true;};}function K(d,g,f,c,e){this.sIFR=d;this.id=g;this.vars=f;this.movie=null;this.__forceWidth=c;this.__events=e;this.__resizing=0;}K.prototype={getFlashElement:function(){return document.getElementById(this.id);},getAlternate:function(){return document.getElementById(this.id+"_alternate");},getAncelocation:function(){var c=this.getFlashElement().parentNode;return !this.sIFR.dom.hasClass(E.FIX_FOCUS,c)?c:c.parentNode;},available:function(){var c=this.getFlashElement();return c&&c.parentNode;},call:function(c){var d=this.getFlashElement();return Function.prototype.apply.call(d[c],d,Array.prototype.slice.call(arguments,1));},attempt:function(){if(!this.available()){return false;}try{this.call.apply(this,arguments);}catch(c){if(this.sIFR.debug){throw c;}return false;}return true;},updateVars:function(c,e){for(var d=0;d<this.vars.length;d++){if(this.vars[d].split("=")[0]==c){this.vars[d]=c+"="+e;break;}}var f=this.sIFR.util.encodeVars(this.vars);this.movie.injectVars(this.getFlashElement(),f);this.movie.injectVars(this.movie.html,f);},locationSize:function(c,d){this.movie.setSize(c,d);this.updateVars(c,d);},fireEvent:function(c){if(this.available()&&this.__events[c]){this.sIFR.util.delay(0,this.__events[c],this,this);}},resizeFlashElement:function(c,d,e){if(!this.available()){return;}this.__resizing++;var f=this.getFlashElement();f.setAttribute("height",c);this.updateVars("renderheight",c);this.locationSize("height",c);if(d!==null){f.setAttribute("width",d);this.movie.setSize("width",d);}if(this.__events.onReplacement){this.sIFR.util.delay(0,this.__events.onReplacement,this,this);delete this.__events.onReplacement;}if(e){this.sIFR.util.delay(0,function(){this.attempt("scaleMovie");this.__resizing--;},this);}else{this.__resizing--;}},blurFlashElement:function(){if(this.available()){this.sIFR.dom.blurElement(this.getFlashElement());}},resetMovie:function(){this.sIFR.util.delay(0,this.movie.reset,this.movie,this.getFlashElement(),this.getAlternate());},resizeAfterScale:function(){if(this.available()&&this.__resizing==0){this.sIFR.util.delay(0,this.resize,this);}},resize:function(){if(!this.available()){return;}this.__resizing++;var g=this.getFlashElement();var f=g.offsetWidth;if(f==0){return;}var e=g.getAttribute("width");var l=g.getAttribute("height");var m=this.getAncelocation();var o=this.sIFR.dom.getHeightFromStyle(m);g.style.width="1px";g.style.height="1px";m.style.minHeight=o+"px";var c=this.getAlternate().childNodes;var n=[];for(var k=0;k<c.length;k++){var h=c[k].cloneNode(true);n.push(h);m.appendChild(h);}var d=this.sIFR.dom.getWidthFromStyle(m);for(var k=0;k<n.length;k++){m.removeChild(n[k]);}g.style.width=g.style.height=m.style.minHeight="";g.setAttribute("width",this.__forceWidth?d:e);g.setAttribute("height",l);if(sIFR.ua.ie){g.style.display="none";var j=g.offsetHeight;g.style.display="";}if(d!=f){if(this.__forceWidth){this.locationSize("width",d);}this.attempt("resize",d);}this.__resizing--;},replaceText:function(g,j){var d=this.sIFR.util.escape(g);if(!this.attempt("replaceText",d)){return false;}this.updateVars("content",d);var f=this.getAlternate();if(j){while(f.firstChild){f.removeChild(f.firstChild);}for(var c=0;c<j.length;c++){f.appendChild(j[c]);}}else{try{f.innerHTML=g;}catch(h){}}return true;},changeCSS:function(c){c=this.sIFR.util.escape(this.sIFR.util.cssToString(this.sIFR.util.convertCssArg(c)));this.updateVars("css",c);return this.attempt("changeCSS",c);}};var X=new function(){this.create=function(p,n,j,i,f,e,g,o,l,h,m){var k=p.ua.ie?d:c;return new k(p,n,j,i,f,e,g,o,["flashvars",l,"wmode",h,"bgcolor",m,"allowScriptAccess","always","quality","best"]);};function c(s,q,l,h,f,e,g,r,n){var m=s.dom.create("object",E.FLASH);var p=["type","application/x-shockwave-flash","id",f,"name",f,"data",e,"width",g,"height",r];for(var o=0;o<p.length;o+=2){m.setAttribute(p[o],p[o+1]);}var j=m;if(h){j=W.create("div",E.FIX_FOCUS);j.appendChild(m);}for(var o=0;o<n.length;o+=2){if(n[o]=="name"){continue;}var k=W.create("param");k.setAttribute("name",n[o]);k.setAttribute("value",n[o+1]);m.appendChild(k);}while(l.firstChild){l.removeChild(l.firstChild);}l.appendChild(j);this.html=j.cloneNode(true);}c.prototype={reset:function(e,f){e.parentNode.replaceChild(this.html.cloneNode(true),e);},setSize:function(e,f){this.html.setAttribute(e,f);},injectVars:function(e,g){var h=e.getElementsByTagName("param");for(var f=0;f<h.length;f++){if(h[f].getAttribute("name")=="flashvars"){h[f].setAttribute("value",g);break;}}}};function d(p,n,j,h,f,e,g,o,k){this.dom=p.dom;this.broken=n;this.html='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="'+f+'" width="'+g+'" height="'+o+'" class="'+E.FLASH+'"><param name="movie" value="'+e+'"></param></object>';var m="";for(var l=0;l<k.length;l+=2){m+='<param name="'+k[l]+'" value="'+k[l+1]+'"></param>';}this.html=this.html.replace(/(<\/object>)/,m+"$1");j.innerHTML=this.html;this.broken.register(j.firstChild);}d.prototype={reset:function(f,g){g=g.cloneNode(true);var e=f.parentNode;e.innerHTML=this.html;this.broken.register(e.firstChild);e.appendChild(g);},setSize:function(e,f){this.html=this.html.replace(e=="height"?/(height)="\d+"/:/(width)="\d+"/,'$1="'+f+'"');},injectVars:function(e,f){if(e!=this.html){return;}this.html=this.html.replace(/(flashvars(=|\"\svalue=)\")[^\"]+/,"$1"+f);}};};this.errors=new Y(O);var A=this.util=new D(O);var W=this.dom=new U(O);var T=this.ua=new H(O);var G={fragmentIdentifier:new F(O),pageLoad:new S(O),prefetch:new N(O),brokenFlashIE:new b(O)};this.__resetBrokenMovies=G.brokenFlashIE.reset;var J={kwargs:[],replaceAll:function(d){for(var c=0;c<this.kwargs.length;c++){O.replace(this.kwargs[c]);}if(!d){this.kwargs=[];}}};this.activate=function(){if(!T.supported||!this.isEnabled||this.isActive||!C()||a()){return;}if(T.requiresPrefetch){G.prefetch.fetchMovies(arguments);}this.isActive=true;this.setFlashClass();G.fragmentIdentifier.cache();if(!this.autoInitialize){return;}G.pageLoad.attach();if(T.ie){window.attachEvent("onunload",function(){W.addClass(E.UNLOADING,document.documentElement);});}};this.setFlashClass=function(){if(this.hasFlashClassSet){return;}W.addClass(E.ACTIVE,W.getBody()||document.documentElement);this.hasFlashClassSet=true;};this.removeFlashClass=function(){if(!this.hasFlashClassSet){return;}W.removeClass(E.ACTIVE,W.getBody());W.removeClass(E.ACTIVE,document.documentElement);this.hasFlashClassSet=false;};this.initialize=function(c){if(!this.isActive||!this.isEnabled){return;}if(R){if(!c){J.replaceAll(false);}return;}R=true;J.replaceAll(c);if(O.repaintOnResize){if(window.addEventListener){window.addEventListener("resize",Z,false);}else{window.attachEvent("onresize",Z);}}G.prefetch.clear();};this.replace=function(w,t){if(!T.supported){return;}if(t){w=A.copyProperties(w,t);}if(!R){return J.kwargs.push(w);}if(this.onReplacementStart){this.onReplacementStart(w);}var AL=w.elements||W.querySelectorAll(w.selector);if(AL.length==0){return;}var v=M(w.src);var AQ=A.convertCssArg(w.css);var u=B(w.filters);var AM=w.forceSingleLine===true;var AR=w.preventWrap===true&&!AM;var p=AM||(w.fitExactly==null?this.fitExactly:w.fitExactly)===true;var AC=p||(w.forceWidth==null?this.forceWidth:w.forceWidth)===true;var r=w.ratios||[];var AD=w.pixelFont===true;var q=parseInt(w.tuneHeight)||0;var y=!!w.onRelease||!!w.onRollOver||!!w.onRollOut;if(p){A.extractFromCss(AQ,".sIFR-root","text-align",true);}var s=A.extractFromCss(AQ,".sIFR-root","font-size",true)||"0";var e=A.extractFromCss(AQ,".sIFR-root","background-color",true)||"#FFFFFF";var n=A.extractFromCss(AQ,".sIFR-root","kerning",true)||"";var AV=A.extractFromCss(AQ,".sIFR-root","opacity",true)||"100";var k=A.extractFromCss(AQ,".sIFR-root","cursor",true)||"default";var AO=parseInt(A.extractFromCss(AQ,".sIFR-root","leading"))||0;var AI=w.gridFitType||(A.extractFromCss(AQ,".sIFR-root","text-align")=="right")?"subpixel":"pixel";var h=this.forceTextTransform===false?"none":A.extractFromCss(AQ,".sIFR-root","text-transform",true)||"none";s=/^\d+(px)?$/.test(s)?parseInt(s):0;AV=parseFloat(AV)<1?100*parseFloat(AV):AV;var AB=w.modifyCss?"":A.cssToString(AQ);var AF=w.wmode||"";if(!AF){if(w.transparent){AF="transparent";}else{if(w.opaque){AF="opaque";}}}if(AF=="transparent"){if(!T.transparencySupport){AF="opaque";}else{e="transparent";}}for(var AU=0;AU<AL.length;AU++){var AE=AL[AU];if(W.hasOneOfClassses(E.IGNORE_CLASSES,AE)||W.ancelocationHasClass(AE,E.ALTERNATE)){continue;}var AN=W.getDimensions(AE);var f=AN.height;var c=AN.width;var z=W.getComputedStyle(AE,"display");if(!f||!c||!z||z=="none"){continue;}c=W.getWidthFromStyle(AE);var m,AG;if(!s){var AK=I(AE);m=Math.min(this.MAX_FONT_SIZE,Math.max(this.MIN_FONT_SIZE,AK.fontSize));if(AD){m=Math.max(8,8*Math.round(m/8));}AG=AK.lines;if(isNaN(AG)||!isFinite(AG)||AG==0){AG=1;}if(AG>1&&AO){f+=Math.round((AG-1)*AO);}}else{m=s;AG=1;}var d=W.create("span",E.ALTERNATE);var AW=AE.cloneNode(true);AE.parentNode.appendChild(AW);for(var AT=0,AS=AW.childNodes.length;AT<AS;AT++){d.appendChild(AW.childNodes[AT].cloneNode(true));}if(w.modifyContent){w.modifyContent(AW,w.selector);}if(w.modifyCss){AB=w.modifyCss(AQ,AW,w.selector);}var o=P(AW,h,w.uriEncode);AW.parentNode.removeChild(AW);if(w.modifyContentString){o.text=w.modifyContentString(o.text,w.selector);}if(o.text==""){continue;}f=Math.round(AG*m);var AJ=Math.round(AG*V(m,r)*m)+this.FLASH_PADDING_BOTTOM+q;var AA=AC?c:"100%";var AH="sIFR_replacement_"+L++;var AP=["id="+AH,"content="+A.escape(o.text),"width="+c,"height="+f,"renderheight="+AJ,"link="+A.escape(o.primaryLink.href||""),"target="+A.escape(o.primaryLink.target||""),"size="+m,"css="+A.escape(AB),"cursor="+k,"tunewidth="+(w.tuneWidth||0),"tuneheight="+q,"offsetleft="+(w.offsetLeft||""),"offsettop="+(w.offsetTop||""),"fitexactly="+p,"preventwrap="+AR,"forcesingleline="+AM,"antialiastype="+(w.antiAliasType||""),"thickness="+(w.thickness||""),"sharpness="+(w.sharpness||""),"kerning="+n,"gridfittype="+AI,"flashfilters="+u,"opacity="+AV,"blendmode="+(w.blendMode||""),"selectable="+(w.selectable==null?"true":w.selectable===true),"fixhover="+(this.fixHover===true),"events="+y,"version="+this.VERSION];var x=A.encodeVars(AP);var g=new K(O,AH,AP,AC,{onReplacement:w.onReplacement,onRollOver:w.onRollOver,onRollOut:w.onRollOut,onRelease:w.onRelease});g.movie=X.create(sIFR,G.brokenFlashIE,AE,T.fixFocus&&w.fixFocus,AH,v,AA,AJ,x,AF,e);this.replacements.push(g);this.replacements[AH]=g;if(w.selector){if(!this.replacements[w.selector]){this.replacements[w.selector]=[g];}else{this.replacements[w.selector].push(g);}}d.setAttribute("id",AH+"_alternate");AE.appendChild(d);W.addClass(E.REPLACED,AE);}G.fragmentIdentifier.relocation();};this.getReplacementByFlashElement=function(d){for(var c=0;c<O.replacements.length;c++){if(O.replacements[c].id==d.getAttribute("id")){return O.replacements[c];}}};this.redraw=function(){for(var c=0;c<O.replacements.length;c++){O.replacements[c].resetMovie();}};function C(){if(O.domains.length==0){return true;}var d=A.domain();for(var c=0;c<O.domains.length;c++){if(A.domainMatches(d,O.domains[c])){return true;}}return false;}function a(){if(document.location.protocol=="file:"){if(O.debug){O.errors.fire("isFile");}return true;}return false;}function M(c){if(T.ie&&c.charAt(0)=="/"){c=window.location.toString().replace(/([^:]+)(:\/?\/?)([^\/]+).*/,"$1$2$3")+c;}return c;}function V(d,e){for(var c=0;c<e.length;c+=2){if(d<=e[c]){return e[c+1];}}return e[e.length-1]||1;}function B(g){var e=[];for(var d in g){if(g[d]==Object.prototype[d]){continue;}var c=g[d];d=[d.replace(/filter/i,"")+"Filter"];for(var f in c){if(c[f]==Object.prototype[f]){continue;}d.push(f+":"+A.escape(A.toJson(c[f],A.toHexString)));}e.push(d.join(","));}return A.escape(e.join(";"));}function Z(d){var e=Z.viewport;var c=W.getViewport();if(e&&c.width==e.width&&c.height==e.height){return;}Z.viewport=c;if(O.replacements.length==0){return;}if(Z.timer){clearTimeout(Z.timer);}Z.timer=setTimeout(function(){delete Z.timer;for(var f=0;f<O.replacements.length;f++){O.replacements[f].resize();}},200);}function I(g){var h,d;if(!T.ie){h=W.getStyleAsInt(g,"lineHeight");d=Math.floor(W.getStyleAsInt(g,"height")/h);}else{if(T.ie){var h=W.getComputedStyle(g,"fontSize");if(h.indexOf("px")>0){h=parseInt(h);}else{var f=g.innerHTML;g.style.visibility="visible";g.style.overflow="visible";g.style.position="static";g.style.zoom="normal";g.style.writingMode="lr-tb";g.style.width=g.style.height="auto";g.style.maxWidth=g.style.maxHeight=g.style.styleFloat="none";var i=g;var c=g.currentStyle.hasLayout;if(c){g.innerHTML='<div class="'+E.LAYOUT+'">X<br>X<br>X</div>';i=g.firstChild;}else{g.innerHTML="X<br>X<br>X";}var e=i.getClientRects();h=e[1].bottom-e[1].top;h=Math.ceil(h*0.8);if(c){g.innerHTML='<div class="'+E.LAYOUT+'">'+f+"</div>";i=g.firstChild;}else{g.innerHTML=f;}e=i.getClientRects();d=e.length;if(c){g.innerHTML=f;}g.style.visibility=g.style.width=g.style.height=g.style.maxWidth=g.style.maxHeight=g.style.overflow=g.style.styleFloat=g.style.position=g.style.zoom=g.style.writingMode="";}}}return{fontSize:h,lines:d};}function P(c,g,s){s=s||A.uriEncode;var q=[],m=[];var k=null;var e=c.childNodes;var o=false,p=false;var j=0;while(j<e.length){var f=e[j];if(f.nodeType==3){var t=A.textTransform(g,A.normalize(f.nodeValue)).replace(/</g,"&lt;");if(o&&p){t=t.replace(/^\s+/,"");}m.push(t);o=/\s$/.test(t);p=false;}if(f.nodeType==1&&!/^(style|script)$/i.test(f.nodeName)){var h=[];var r=f.nodeName.toLowerCase();var n=f.className||"";if(/\s+/.test(n)){if(n.indexOf(E.CLASS)>-1){n=n.match("(\\s|^)"+E.CLASS+"-([^\\s$]*)(\\s|$)")[2];}else{n=n.match(/^([^\s]+)/)[1];}}if(n!=""){h.push('class="'+n+'"');}if(r=="a"){var d=s(f.getAttribute("href")||"");var l=f.getAttribute("target")||"";h.push('href="'+d+'"','target="'+l+'"');if(!k){k={href:d,target:l};}}m.push("<"+r+(h.length>0?" ":"")+h.join(" ")+">");p=true;if(f.hasChildNodes()){q.push(j);j=0;e=f.childNodes;continue;}else{if(!/^(br|img)$/i.test(f.nodeName)){m.push("</",f.nodeName.toLowerCase(),">");}}}if(q.length>0&&!f.nextSibling){do{j=q.pop();e=f.parentNode.parentNode.childNodes;f=e[j];if(f){m.push("</",f.nodeName.toLowerCase(),">");}}while(j==e.length-1&&q.length>0);}j++;}return{text:m.join("").replace(/^\s+|\s+$|\s*(<br>)\s*/g,"$1"),primaryLink:k||{}};}};var parseSelector=(function(){var B=/\s*,\s*/;var A=/\s*([\s>+~(),]|^|$)\s*/g;var L=/([\s>+~,]|[^(]\+|^)([#.:@])/g;var F=/(^|\))[^\s>+~]/g;var M=/(\)|^)/;var K=/[\s#.:>+~()@]|[^\s#.:>+~()@]+/g;function H(R,P){P=P||document.documentElement;var S=R.split(B),X=[];for(var U=0;U<S.length;U++){var N=[P],W=G(S[U]);for(var T=0;T<W.length;){var Q=W[T++],O=W[T++],V="";if(W[T]=="("){while(W[T++]!=")"&&T<W.length){V+=W[T];}V=V.slice(0,-1);}N=I(N,Q,O,V);}X=X.concat(N);}return X;}function G(N){var O=N.replace(A,"$1").replace(L,"$1*$2").replace(F,D);return O.match(K)||[];}function D(N){return N.replace(M,"$1 ");}function I(N,P,Q,O){return(H.selectors[P])?H.selectors[P](N,Q,O):[];}var E={toArray:function(O){var N=[];for(var P=0;P<O.length;P++){N.push(O[P]);}return N;}};var C={isTag:function(O,N){return(N=="*")||(N.toLowerCase()==O.nodeName.toLowerCase());},previousSiblingElement:function(N){do{N=N.previousSibling;}while(N&&N.nodeType!=1);return N;},nextSiblingElement:function(N){do{N=N.nextSibling;}while(N&&N.nodeType!=1);return N;},hasClass:function(N,O){return(O.className||"").match("(^|\\s)"+N+"(\\s|$)");},getByTag:function(N,O){return O.getElementsByTagName(N);}};var J={"#":function(N,P){for(var O=0;O<N.length;O++){if(N[O].getAttribute("id")==P){return[N[O]];}}return[];}," ":function(O,Q){var N=[];for(var P=0;P<O.length;P++){N=N.concat(E.toArray(C.getByTag(Q,O[P])));}return N;},">":function(O,R){var N=[];for(var Q=0,S;Q<O.length;Q++){S=O[Q];for(var P=0,T;P<S.childNodes.length;P++){T=S.childNodes[P];if(T.nodeType==1&&C.isTag(T,R)){N.push(T);}}}return N;},".":function(O,Q){var N=[];for(var P=0,R;P<O.length;P++){R=O[P];if(C.hasClass([Q],R)){N.push(R);}}return N;},":":function(N,P,O){return(H.pseudoClasses[P])?H.pseudoClasses[P](N,O):[];}};H.selectors=J;H.pseudoClasses={};H.util=E;H.dom=C;return H;})();var avenirLight={src:"/common/flash/avenir-light.swf"};sIFR.activate();sIFR.replace(avenirLight,{wmode:"transparent",selector:"h1.black-title",css:{".sIFR-root":{"background-color":"#FFFFFF",color:"#000000","letter-spacing":"1"}}});sIFR.replace(avenirLight,{wmode:"transparent",selector:"h1.grey-title",css:{".sIFR-root":{"background-color":"#FFFFFF",color:"#4A4949","letter-spacing":"1"}}});sIFR.replace(avenirLight,{wmode:"transparent",selector:"h2",css:{".sIFR-root":{"background-color":"#FFFFFF",color:"#99610E","letter-spacing":"1.5",leading:"3px"}}});$(function(){$(".productDetails-tab").click(function(){});});