
var warning='copyright 2008 Tartor Software Inc. all rights reserved';if(typeof tartor=='undefined'){var tartor={};}
tartor.priceElement=function(parent){var divs=parent.getElementsByTagName("div");var len=divs.length;for(var i=0;i<len;i++){if(divs[i].className=="productListItemPrice"){return divs[i];}}}
tartor.mouseoverHandler=function(){if(this&&(typeof tartor!="undefined")&&tartor.priceElement){var e=tartor.priceElement(this);if(e){e.style.color="green";}}}
tartor.mouseoutHandler=function(){if(this&&(typeof tartor!="undefined")&&tartor.priceElement){var e=tartor.priceElement(this);if(e){e.style.color="#3c3c3c";}}}
tartor.clickHandler=function(){if(this){var anchors=this.getElementsByTagName("a");if(anchors.length>0){location=anchors[0].href;}}}
tartor.onloadHandlerProducts=function(){var list=document.getElementById("product_list");if(list){var items=list.getElementsByTagName("div");var len=items.length;for(var i=0;i<len;i++){if(items[i].className=="productListItem"){items[i].onmouseover=tartor.mouseoverHandler;items[i].onmouseout=tartor.mouseoutHandler;}}}}