$(document).ready(function() {
    is_login = $(document).getUrlParam('login')
    if (is_login == 'true'){
        if ($('#user_name').val() == undefined){
            $.facebox({ ajax: '/accounts/login/' })
        }
    }
    $('#featured-trips-label').show();
    $('.carousel').each(function(){
       $(this).show(); 
    });
    // these image sources should probably be loaded dynamically - perhaps hidden input fields or something.
	$("#featured-trips").carousel({ slideSpeed: "slow", dispItems: 4 , nextBtn: '<img src="small-arrow-right.png" alt="next" />', prevBtn: '<img src="small-arrow-left.png" alt="prev" />', loop: true });
	$("#main-banner").carousel({ nextBtn: '<img src="spacer.gif" alt="next" />', autoSlide: true, autoSlideInterval: 10000, loop: true, pagination: true, slideSpeed: "slow" });

    $("#id-testimonial-tracker").jCarouselLite({
        auto: 4000,
        speed: 1200,
        circular: true,
        visible: 1,
        easing: 'easeInOutBack',
        vertical: true
    });
});
