/*   Multi caption button with sliding caption effect   Author: Khanh Cao*/function scrollable(selector, scroll_fx) {    if (scroll_fx == null)    scroll_fx = "fade";  jQuery(selector).cycle({                /* Apple the scrolling effect to all elements with CLASS "button_scroller" */    fx: scroll_fx,                        /* the effect */    delay: 1000,                          /* time to wait after the page loaded before start sliding */    timeout: 4000,                        /* Time to stop between transitions */    easing: null,    easeIn: null,    easeOut: null,    pause: true,                          /* Pause on mouse hover */  });}function custom_scrollable(selector, scroll_fx, cDelay) {  if (scroll_fx == null)    scroll_fx = "fade";  if (cDelay == undefined)    cDelay = 1000;  jQuery(selector).cycle({                /* Apply the scrolling effect to only elements with ID "custom_speed" */    fx: scroll_fx,                        /* the effect */    speed: 200,                           /* Speed of the transition */    delay: cDelay,                          /* time to wait after the page loaded before start sliding */    timeout: 3000,                        /* Time to stop between transitions */    easing: 'swing',                      /* Custom easing effect */    easeIn: null,    easeOut: null,    pause: true,                          /* Pause on mouse hover */  });}jQuery(document).ready(function(){  /*jQuery("td:has(> .list_item)").addClass("transparent_topbottom")  .mouseenter(function(e){    jQuery(this).addClass("list_item_hover");  })  .mouseleave(function() {    jQuery(this).removeClass("list_item_hover");  });*/});
