var nextArticle_home = 6;
function carousel_callback_articles_home( carousel, state, nameofid) {
	  $('.ArticlesSSlider_home .jcarousel-next').click( function( evt ) {
	  	var last_elem = jQuery('#' + nameofid + ' li').length;
	  	var component_name = 'tltonline:articles_slider';
	  	var cat_name = 'home';
	  	    $.ajax({
	  	        type: 'POST',
	  	        url:'/ajax.php',
	  	        dataType:'json',
	  	        cache:false,
	  	        data:{page: nextArticle_home, component:component_name, ajax:true, cat:cat_name},
	  	        success:function(data){
	  	        	if (data['html']!=''){
	  	        	carousel.add((last_elem+1), data['html']);
	  	        	nextArticle_home = data['next_filmaff'];
	  	            carousel.size((last_elem+1));
	  	            }
	  	        }
	  	    });
	  	    return false;    	
	  });
	}
$(document).ready(function() {
  $('#ArticlesSSlider_home').jcarousel( {
  	scroll: 2,
  	nameofid: 'ArticlesSSlider_home',
      initCallback: carousel_callback_articles_home
  });
});
