$(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: "fast", dispItems: 5 , nextBtn: '<img src="/media-server/static/images/small-arrow-right.png" alt="next" />', prevBtn: '<img src="/media-server/static/images/small-arrow-left.png" alt="prev" />', loop: true });
	$("#main-banner").carousel({ nextBtn: '<img src="http://bayworldtravel.com/wp-content/themes/Bayworld_Travel/images/home_banner/green_user_bar.gif" alt="next" />', autoSlide: true, autoSlideInterval: 5000, loop: true, pagination: true, slideSpeed: "normal" });
});
