if (language.indexOf('de') < 0)
{
  // COMMON HEADER (NAVIGATION ICONS)
  switchIconTitle('icon_header_wallpaper', "Desktop Wallpaper");
  switchIconTitle('icon_header_sitemap', "Table of Contents");
  switchIconTitle('icon_header_tags', "Tag Index");
  switchIconTitle('icon_header_locations', "Location Index");
  switchIconTitle('icon_header_map', "Map (Google Earth KML)");
  switchIconTitle('icon_header_links', "Links");
  switchIconTitle('icon_header_stats', "Gallery and Image Statistics");
  switchIconTitle('icon_header_photoblog', "Photo Blog");
  switchIconTitle('icon_header_about', "About");
  
  // GENERAL ICONS
  switchIconTitle('corner_icon_subscribe', "Subscribe to 'Explorations of Beauty and Decay' by Email");
  switchIconTitle('icon_subscribe', "Subscribe to 'Explorations of Beauty and Decay' by Email");
  switchIconTitle('icon_mail', "Email this photo to someone you know");
  switchIconTitle('icon_comment', "Comment on this photo");
  switchIconTitle('icon_save', "Download this photo");
  
  switchIconTitle('icon_googlemaps', "Show geotagged photos in Google Maps");
  switchIconTitle('icon_slideshow', "Start a slide show of all photos in this album");
  switchIconTitle('icon_sitemap', "Show the sitemap of this gallery");
  switchIconTitle('icon_feed', "Subscribe to the RSS feed of this gallery with our browser or your favourite feed reader");
  switchIconTitle('icon_resolutions', "Browse Wallpapers Screen Resolution");
  switchIconTitle('icon_categories', "Browse Wallpapers by Category");

  switchIconTitle('icon_code', "Copy the HTML / BBCODE of this image for use with myspace, blogs, websites, etc.");
  switchIconTitle('icon_guestbook', "Sign the guestbook und leave a comment for this photo");

}

function switchIconTitle(id, title)
{
  if (document.getElementById(id) != null)
  {
    document.getElementById(id).title = title;
  }
  
  var imgId = "img_" + id;
  if (document.getElementById(imgId) != null)
  {
    document.getElementById(imgId).title = title;
  }
}
