jQuery(function(){
    jQuery('ul.sf-menu').superfish();
});

$(document).ready(function(){
   $("#myController").jFlow({
      slides: "#slides",
      controller: ".jFlowControl", // must be class, use . sign
      slideWrapper : "#jFlowSlide", // must be id, use # sign
      selectedWrapper: "jFlowSelected",  // just pure text, no sign
      auto: true,    //auto change slide, default true
      width: "554px",
      height: "228px",
      duration: 600,
      prev: ".jFlowPrev", // must be class, use . sign
      next: ".jFlowNext" // must be class, use . sign
   });
});

function doRegister()
{
   ret = processRegister();
   if (ret)
      document.OrderForm.submit();
   
}

function chgFilter(tento, purl)
{
   getDataForDIV('../engine/modules/product_filter.php?fid='+tento.value, 'TmpDiv');
   setTimeout("reloadPage('"+purl+"')", 250);
}

function reloadPage(purl)
{
   //clc = location.href;
   location.href = purl;
   //location.href = clc;
}

function listByFatory(tento)
{
   if (tento.value == 0)
      location.href="../";
   else
      location.href="../"+tento.value;
}


