$(document).ready(function() {

    // Tabbed Container
    $('.tab_content').hide();
    $('ul.tabs li:first').show();
    $('.tab_content:first').show();


    var img_lu = {
        'order_num'  : 'assets/images/branding/order_look_up_title.png',
        'cc_num'     : 'assets/images/branding/order_look_up_title.png',
        'contact_us' : 'assets/images/branding/contact_us_title.png'
    };

    var displayImage = function(sel) {
        $('#image-container').find('img').attr('src', img_lu[sel]);
    };

    var setDisplay = function() {
        displayImage( $(this).attr('class') );
        if ( $(this).hasClass('contact_us') ) {
            $('#lookup-container').hide();
            $('#contact-container').show();
        }
        else {
            $('.tab_content').hide();
            $('ul.tabs li, ul.tabs li a').removeClass('active');
            var sel = $(this).attr('class');
            $('#' + sel).show();
            $('#contact-container').hide();
            $('#lookup-container').show();
        }

        var activeTab = $(this).find('a').attr('href');
        $(activeTab).fadeIn();
        $(this).addClass('active');
        $(this).find('a').addClass('active');
        return;
    }

    $('ul.tabs li, li.contact_us').bind('click', setDisplay);
    $(".order_num, .cc_num, .contact_us").bind("click", displayImage);

});

