﻿
$(function() {
    
    setTimeout("setupCarusel();", 600);
    
        
});

function setupCarusel(){
    //$(".bbox .carusel").css({height: "500px"});
    //auto: 500,
    
    $(".bbox .carusel").jCarouselLite({
	    vertical: true,
	    hoverPause:true,
	    visible: 5,
	    auto: 1500,		    
	    speed: 1000,
	    queryTop: ".ticker",
	    querySingle: ".doc"
    });
}

