$(document).ready(function(){setupNextPrevious()});function setupNextPrevious(){var b=$("div#categoryCont img.productImg");var a="";var c=true;if(b.length>1){$.each(b,function(d,e){if(c){a=a+$(e).attr("id").split("_")[1];c=false}else{a=a+","+$(e).attr("id").split("_")[1]}});$.cookie("nextPreviousIds",a,{expires:31,path:"/"})}}function nextPrevious(a){$(document).ready(function(){var b=a;var g="";var c="http://"+document.domain+"/pws/ProductDetails.ice";var f=$.cookie("nextPreviousIds");var d;var e;if(f!=null){f=f.split(",");var h=$.inArray(b.toString(),f);if(h!=-1){if(h==0){d=c+"?ProductID="+f[h+1];e=c+"?ProductID="+f[(f.length-1)]}else{if(h==(f.length-1)){d=c+"?ProductID="+f[0];e=c+"?ProductID="+f[(h-1)]}else{d=c+"?ProductID="+f[(h+1)];e=c+"?ProductID="+f[(h-1)]}}$('<a href="'+e+'"><img src="/pws/images/arrow_left_blue.gif" alt="<" /> Previous item</a>&nbsp;').appendTo("div#nextPreviousCont");$('<a href="'+d+'">Next item <img src="/pws/images/arrow_right_blue.gif" alt=">" /></a>').appendTo("div#nextPreviousCont")}}})};