function hideMenuItem()
{
  $('#showChannels').hide();
}

function analyze( str ) {
    var output, i;

    output = 'String: ' + str + ' - Length: ' + str.length + '; ';

    for ( i = 0; i < str.length; i += 1 ) {
        output += str.charCodeAt( i ) + ' ';
    }

    return output;  
}


$(document).ready(function() {   
   $('#menu ul li').click(function(e){



    if($.trim($(this).text()) == "Channels"){
      $('#showChannels').toggle();    
    }else{
      hideMenuItem();
    }

  });


});

