$(document).ready(function(){
   $('.rowselector tbody tr').bind('mouseover mouseout',
				function (e) {e.type == 'mouseover' ? $(this).children('td').addClass('hilightRow') : $(this).children('td').removeClass('hilightRow');}
			);
   
   $("#crt_channel").change(function(event){
         $("#frm_crt_channel").submit();
       }); 
   
   $(".node_tree").treeview();
});