$(document).ready(function() {
    var letterImage = $('#cover-monogram-letter img');
    var letterSelect = $('#cover-monogram-text select');
    var letterInput = $('#cover-monogram-text input');
    $('#cover-monogram-alphabet a').click(function() {
        var letter = $(this).text();
        var font = letterSelect.children('option:selected').attr('value');
        if (font == 'PSTD') {
            font = 'CoverVS_';
        }
        var image = '/Artistic_Assets/images/cuts/' + font + letter + '.png';
        letterImage.attr('src', image);
        letterInput.attr('value', letter);
        return false;
    });
    
    //below jquery script used on shipping billing page
    $('#ShipBillTemplate_ctlContent_pnlBillToTextFields input:text, #ShipBillTemplate_ctlContent_pnlBillToTextFields select').change(function() {
        $('#ShipBillTemplate_ctlContent_pnlBillToTextFields input:checkbox').attr('checked', false);
    });

    $('#ShipBillTemplate_ctlContent_txbShipToFname').keyup(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_txbBillToFname').val($('#ShipBillTemplate_ctlContent_txbShipToFname').val());
        }
    });
    $('#ShipBillTemplate_ctlContent_txbShipToLname').keyup(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_txbBillToLname').val($('#ShipBillTemplate_ctlContent_txbShipToLname').val());
        }
    });
    $('#ShipBillTemplate_ctlContent_txbShipToAddress1').keyup(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_txbBillToAddress1').val($('#ShipBillTemplate_ctlContent_txbShipToAddress1').val());
        }
    });
    $('#ShipBillTemplate_ctlContent_txbShipToAddress2').keyup(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_txbBillToAddress2').val($('#ShipBillTemplate_ctlContent_txbShipToAddress2').val());
        }
    });
    $('#ShipBillTemplate_ctlContent_txbShipToCity').keyup(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_txbBillToCity').val($('#ShipBillTemplate_ctlContent_txbShipToCity').val());
        }
    });
    $('#ShipBillTemplate_ctlContent_txbShipToZip').keyup(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_txbBillToZip').val($('#ShipBillTemplate_ctlContent_txbShipToZip').val());
        }
    });
    $('#ShipBillTemplate_ctlContent_txbShipToZipPlusFour').keyup(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_txbBillToZipPlusFour').val($('#ShipBillTemplate_ctlContent_txbShipToZipPlusFour').val());
        }
    });
    $('#ShipBillTemplate_ctlContent_ddlShipToState').change(function() {
        if ($('#ShipBillTemplate_ctlContent_chkBillSameAsShip').is(':checked')) {
            $('#ShipBillTemplate_ctlContent_ddlBillToState').val($('#ShipBillTemplate_ctlContent_ddlShipToState').val());
        }
    });
});

