// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'image01.jpg'
theImages[1] = 'image02.jpg'
theImages[2] = 'image03.jpg'
theImages[3] = 'image04.jpg'
theImages[4] = 'image05.jpg'
theImages[5] = 'image06.jpg'
theImages[6] = 'image07.jpg'
theImages[7] = 'image08.jpg'
theImages[8] = 'image09.jpg'
theImages[9] = 'image10.jpg'
theImages[10] = 'image11.jpg'
theImages[11] = 'image12.jpg'

var captions = new Array();
captions[0] = 'SEM  view of ZnO nanorods and nanoflowers on GaN-based LED epiwafer <strong>H  Gao et al</strong> 2007 <em>Journal  of Physics D: Applied Physics</em> <strong>40</strong> 3654&ndash;3659.';
captions[1] = 'Dose-volume  objectives in multicriteria optimization <strong>T  Halabi, D Craft </strong>and<strong> T Bortfeld</strong> 2006 <em>Physics  in Medicine &amp; Biology</em> <strong>51 </strong>3809&ndash;3818.';
captions[2] = 'SEM image  of carbon nanocoils synthesized on copper microtips at 600 &deg;C <strong>W  Y Sung et al</strong> 2007 <em>Nanotechnology</em> <strong>18</strong> 245603.';
captions[3] = 'The  velocity of quantum transport in a biased periodic structure under  biochromatic driving <strong>A  Klumpp</strong>, <strong>D  Witthaut</strong> and <strong>H  J Korsch</strong> 2007 <em>Journal  of Physics A: Mathematical and Theoretical</em><strong> 40</strong> 2299&ndash;2311.';
captions[4] = 'Room-temperature  STM image of HOPG, following the deposition of 5.4 nm Sb nanorods <strong>S  S Kushvaha et al</strong> 2007 <em>Nanotechnology</em> <strong>18</strong> 145501.';
captions[5] = 'Artistic  impression of birefringence map of an a-axis LiNbO<sub>3</sub>  fibre grown by LHMPG <strong>E  K Renwick</strong> and<strong> I S Ruddock</strong> 2005 <em>Journal  of Physics D: Applied Physics</em> <strong>38</strong> 3387&ndash;3390.';
captions[6] = 'Calculated  difference between total and vacuum LDOS near ordered nanostructures  arranged to  form a stadium corral <strong>C  Girard</strong> 2005 <em>Reports  on Progress in Physics</em> <strong>68</strong> 1883&ndash;1933.';
captions[7] = 'Single-walled  carbon nanotube rings with diameter 100 nm <strong>L  Song et al</strong> 2006 <em>Nanotechnology</em> <strong>17</strong> 2355&ndash;2361.';
captions[8] = 'Colour-coded  TM reflectivity of a waveguide structure versus groove depth and  waveguide thickness <strong>A  Bunkowski et al </strong>2006 <em>Classical  and Quantum Gravity</em><strong> 23</strong> 7297&ndash;7303.';
captions[9] = 'Modeling  of fast electron number densities following the injection of an  electron beam into a background plasma <strong>J  R Davies et al</strong> 2006 <em>Plasma  Physics and Controlled Fusion</em> <strong>48</strong> 1181&ndash;1199.';
captions[10] = 'Interdigitated  3D Ni micromesh array <strong>H  Sato et al</strong> 2007 <em>Journal  of Micromechanics and Microengineering</em> <strong>17</strong> 909&ndash;914.';
captions[11] = 'Out-of-plane  microreflector fabricated using PolyMUMPS process <strong>S  H Tsang et al </strong>2007 <em>Journal  of Micromechanics and Microengineering</em> <strong>17</strong> 1314&ndash;1325.';

// do not edit anything below this line
var whichImage = Math.round(Math.random()*(theImages.length - 1));
function showRandomImage() {
	document.write('<img src="../furniture/random/sidebar/'+theImages[whichImage]+'" alt="random image" width="160" height="160" /><p>' + captions[whichImage] + '</p>');
}
