var dd = null;

function init_btns() {
$('#newchannel_btn').click(function () {
    dd = new Date().getTime();
    url = 'http://'+serverhost+webcamurl+'?c='+$('#newchannel_name').val().replace(/ /g,'+')+'&'+dd;
    window.location.assign(url);
});

$('.channel_delete').click(function () {
        dd = new Date().getTime();
    $('#'+$(this).attr('id')).parents('.channel').load('/delete/channel/'+$(this).attr('id')+'/?'+dd);//,function (data) {
//        $('#'+data.split('%')[0]).parents('.channel').empty().html('<h3>Channel <span style="font-weight: normal;">'+data.split('%')[1]+'</span> Deleted</h3>');
//    });
});
}

init_btns();
