// JavaScript Document
jQuery.noConflict();
function testCall(a,b,c) {
	if(!c) {
		doThis();	
	}
}
jQuery(document).ready(function() {
    jQuery('#andrekarrusel').jcarousel({
        vertical: true,
        scroll: 4 ,
		initCallback: mycarousel_initCallback,
		buttonNextCallback:testCall

    });
});

function mycarousel_initCallback(carousel) {
	c=carousel;
}
 
function doThis(){
	//other things here...
	
	c.scroll(1);	
}
