/*--------------------------------------------------------------------------*
 * 
 * Copyright (C) 2008 Brand Labs LLC
 * 
 * Product Detail Zoom (Whitney)
 * 
 * Version 1.1.1
 * 
 *--------------------------------------------------------------------------*/
WhitneyZoom.getPhotosPath=function(){return '/photos';};WhitneyZoom.getProductCode=function(){var aa=null;var ba=null;var ca=null;aa=location.pathname;ba=location.search;aa=aa.toLowerCase();if(ba!=null){ba=ba.toLowerCase();}
if(aa=='/productdetails.asp'){if(ba!=null){var da=ba.toQueryParams();if(da['productcode']!='undefined'){ca=da['productcode'];if(ca!=null){return escape(ca);}}}}
if(aa.indexOf('-p/')!=-1){aa=aa.replace('-p/','_p/');}
if(aa.indexOf('_p/')!=-1){var da=aa.match(/\/.*_p\/(.*)\.htm/i);if(da.length==2){ca=da[1];if(ca!=null){return escape(ca);}}}
return null;};WhitneyZoom.isProductDetailPage=function(){var ea=null;ea=WhitneyZoom.getProductCode();if(ea!=null){return true;}
return false;};