$(document).ready(function() {

    $('.Buttons .NavBtn').click(function() {
        if (!$(this).parent().hasClass('Selected')) {
            unselectAllButtons();
            $(this).parent().addClass('Selected');
            var obj = swfobject.getObjectById("FlashQuote");
            if (obj != null) {
                obj.BlurOut();
            }
        }
        return false;
    });

    $('.Buttons .CloseButton').click(function() {
        unselectAllButtons();
        var obj = swfobject.getObjectById("FlashQuote");
        if (obj != null) {
            obj.CloseProductInformation();
        }
        return false;
    });

    function unselectAllButtons() {
        $('.Buttons').find('li.Selected').removeClass('Selected');
    }
    $(document).ready(function() {
        $('#TextBoxBirth3').keyup(function() {
            if ($(this).val().length == 1 && $('#TextBoxBirth4').val().length == 0) {
                $('#TextBoxBirth4').focus()
            }
        });
        $('#TextBoxBirth3').focus();
    });

});
