 $(document).ready(function() {
        $(".slider1").jCarouselLite({
	circular: false,
        btnNext: ".next1",
        btnPrev: ".prev1",
        visible: 5
})
});
    $(document).ready(function() {
        $(".slider3").jCarouselLite({
	circular: false,
        btnNext: ".next3",
        btnPrev: ".prev3",
        visible: 5
    })
});
    $(document).ready(function() {
        $(".slider5").jCarouselLite({
	circular: false,
        btnNext: ".next5",
        btnPrev: ".prev5",
        visible: 5
    })
});
    $(document).ready(function() {
        $(".slider6").jCarouselLite({
	circular: false,
        btnNext: ".next6",
        btnPrev: ".prev6",
        visible: 5
    })
});

//Captify
$(document).ready(function(){
    $('img.captify').captify({
    // all of these options are... optional
    // speed of the mouseover effect
    speedOver: 'fast',
    // speed of the mouseout effect
    speedOut: 'normal',
    // how long to delay the hiding of the caption after mouseout (ms)
    hideDelay: 500,
    // 'fade', 'slide', 'always-on'
    animation: 'slide',
    // text/html to be placed at the beginning of every caption
    prefix: '',
    // opacity of the caption on mouse over
    opacity: '0.7',
    // the name of the CSS class to apply to the caption box
    className: 'caption-bottom',
    // position of the caption (top or bottom)
    position: 'bottom',
    // caption span % of the image
    spanWidth: '100%'
    })
});



