----------------------------
 Installing the image files
----------------------------

The *.png image files need to be copied to your \resources\images file for Calibre.

For example a default Calibre installation for Windows 64-bit users will find the folder here:
C:\Program Files (x86)\Calibre2\resources\images

----------------------------
 Customising the menu
----------------------------

Add the following text to your 'Current Tweaks' section and customise as described below.

# Specify the submenus to appear on the 'Search the internet' plugin menu.
# Menu items are specified as a tuple of: ('Menu text', 'Image', 'Url', 'Encoding')
# 'Menu text' - The name to display in the sub-menu. Specify None for a separator.
# 'Image' - Name of the image file to use as a menu icon. Specify None if no image.
# Image .png files should be placed in the \resources\images folder.
# 'Url' - URL of the website to launch, with tokens that are substituted
# when the menu item is click based on the currently selected book.
# 'Encoding' - Type of encoding to use. Default is utf-8 if None specified.
# The possible token values you can place in the URL are:
# {title} - The title for the selected book
# {author} - The author for the selected book
# {isbn} - The ISBN for the selected book
stip_search_internet_menus = [
    ('FantasticFiction for Author', 'stip_fantastic_fiction.png', 'http://www.fantasticfiction.co.uk/search/?searchfor=author&keywords={author}', 'utf-8'),
    ('FantasticFiction for Title',  'stip_fantastic_fiction.png', 'http://www.fantasticfiction.co.uk/search/?searchfor=book&keywords={title}', 'utf-8'),
    (None, None, None, None),
    ('Amazon.com for Book',    'stip_amazon.png', 'http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Dstripbooks&field-keywords={author}+{title}', 'latin-1'),
    (None, None, None, None),
    ('Google.com for Book',    'stip_google.png', 'http://www.google.com/#sclient=psy&q={author}+"{title}"', 'utf-8'),
    ('Google images for Book', 'stip_google.png', 'http://www.google.com/images?q={author}+{title}', 'utf-8'),
    (None, None, None, None),
    ('Wikipedia for Author',   'stip_wikipedia.png', 'http://en.wikipedia.org/w/index.php?title=Special%3ASearch&search={author}', 'utf-8')]
