﻿function showDevice(){
    alert('abc');
    window.location.href = '' + $('cbxDevices').value;
}

$(function () {

    $('.carrierBox td').click(function () {
        $(this).parent().find('input[type=radio]').attr('checked', 'checked');
    });

    /* IE 6 fix */
    if ($.browser.msie && $.browser.version < 7) {
        $('.main .columnTwoBg').css('height', $('.main .columnTwoBg').parent().parent().height()  + 'px');
    }
});
