I want to be able to pull content/fields from related translated pages in Drupal. Example: page1 is written in English and has a summary field written in English. I have page1b and page1c with the same settings in Drupal except they are translated into a different language. So the multilingual module is installed, and I setup a few languages and then page1, page1b and page1c each have their own language and have been "linked together" (on the translation tab of the pages, they each page references each other appropriately). Here's what I want to do: Setup page2 with a dropdown menu that has lang1, lang2 and lang3 on it. Then when lang1 is selected on the dropdown, it will pull the summary field (and/or any other fields) from page1 and display it on the body of page2. If lang2 is selected from the dropdown it will pull the summary field (and/or any other fields) from page1b and display it on the body of page2. If lang3 is selected from the dropdown it will pull the summary field (and/or any other fields) from page1c and display it on the body of page2. My pages are setup properly, languages are setup properly, the translation link between pages are setup properly but how do I do this in Drupal: 1. build the dropdown that shows each language from the drupal multiplingual module 2. allow page2 to display content of fields from page1, page1b and page1c? thanks!