$(document).ready(function(){   
    //Controls the carousel, but first finds if it exists
    if($("#carousel").length > 0)
    {
        $("#carousel").jCarouselLite({
            btnNext: "#next a",
            btnPrev: "#previous a",
            circular: true,
            visible: 5,
            scroll: 2,
            speed: 500            
        });
    }  
  
});


