﻿$(document).ready(function() {
    $('.tabbedBooksHome .comingSoonList').hide();
    $('.tab-outNow').click(function() {
        if (!$(this).hasClass('selected')) {
            $('.tabbedBooksHome .tabsList div').each(function() {
                $(this).toggleClass('selected');
            });
            //$(this).addClass('selected');
            $('.tabbedBooksHome .comingSoonList').hide();
            $('.tabbedBooksHome .outNowList').show();
        }
    });

    $('.tab-comingSoon').click(function() {
        if (!$(this).hasClass('selected')) {
            $('.tabbedBooksHome .tabsList div').each(function() {
                $(this).toggleClass('selected');
            });
            //$(this).addClass('selected');
            $('.tabbedBooksHome .outNowList').hide();
            $('.tabbedBooksHome .comingSoonList').show();
        }
    });
});