jQuery.extend({
  loadScrollingImages: function() {
    //alert('aaa');
    jQuery.post('res/ajax.php', {action: 'scrolling-images'}, function(data) {
      // add data
      jQuery('#scrolling-container').empty().append(data);
      // start scrolling
      jQuery('#current-stock-scrolling').vTicker({
        speed: 500,
        pause: 3000,
        //pause: 300000,
        showItems: 3,
        animation: 'fade',
        mousePause: true,
        height: 0,
        direction: 'up'
      });

    });
  }
  
});
