﻿$(function() {
    // create the next and prev buttons
    var prevButton = $('<span class="prev">prev<span></span></span>');
    var nextButton = $('<span class="next">next<span></span></span>'); 
    $('.slideshow').append(prevButton);
    $('.slideshow').append(nextButton);    
    
    // create jCarousel
	$(".slideshow > div").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        scroll:1,
        visible: 1,
        circular: true
    });    
});	       