// ListBox Events
        private void search_results_SelectedIndexChanged(object sender, EventArgs e)
        {
            // Setup
            if (search_results.SelectedIndex < 0)
            {
                return;
            }
            string key   = search_results.GetItemText(search_results.SelectedItem);
            string value = comic_list[key];
            string url   = "http://www.readcomics.tv/comic/" + value;

            comic_name.Text = key;

            // Grab page source
            string html = new WebClient().DownloadString(url);

            // Get banner
            comic_picture.Load(ComicUtils.RetrieveBanner(value, html));
            comic_picture.SizeMode = PictureBoxSizeMode.Zoom;

            // Get description
            comic_description.Text = ComicUtils.RetrieveDescription(value, html);
        }