$(document).ready(function () {
    $('#verify-att').click(function() {
        if ($(this).attr("checked") === true) {
            window.location="http://wirelesswo.alpineclients.com/att-plans/";
        }
    });
});

$(document).ready(function () {
    $('#verify-sprint').click(function() {
        if ($(this).attr("checked") === true) {
            window.location="http://wirelesswo.alpineclients.com/use-sprint/";
        }
    });
});

$(document).ready(function () {
    $('#verify-verizon').click(function() {
        if ($(this).attr("checked") === true) {
            window.location="http://wirelesswo.alpineclients.com/use-verizon/";
        }
    });
});

