HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/MBoogaard/oosting-horseriding.com/CMS/CMSScripts/Custom/productSlider.js
function productSlider(stepLength,width,height,container,buttonNext,buttonPrev)
{
  if (jQuery(container+" ul li").length>stepLength)
  {
    overStep=jQuery(container+" ul li").length%stepLength;
    blanks=0;
    if (overStep>0) blanks=stepLength-overStep;
    for (i=0;i<blanks;i++) 
      jQuery(container+" ul").append("<li></li>");
    jQuery(container).jCarouselLite({
      'btnNext': buttonNext,
      'btnPrev': buttonPrev,
      'width': width,
      'height': height,
      'circular': false,
      'visible': stepLength,
      'scroll': stepLength
    }); 
    jQuery(container).show();
    jQuery(container).mouseover(function(){
      jQuery(buttonNext).show();
      jQuery(buttonPrev).show();
    });
    jQuery(container).mouseout(function(){
      jQuery(buttonNext).hide();
      jQuery(buttonPrev).hide();
    });
  }
}