/* slideshow script by Kyaw Sint, ksint2@gmail.com */
 
var speed = 4000; /* in milliseconds */
 
var Slide = new Array();
var Caption = new Array();
var Link = new Array();

Slide[0] = "pics/slides/DM.gif";
Slide[1] = "pics/slides/SSM.jpeg";
Slide[2] = "pics/slides/micgun.jpg";
Slide[3] = "pics/slides/porous.jpg";
Slide[4] = "pics/slides/membrane.jpeg";
Slide[5] = "pics/slides/capsules.jpg";
Slide[6] = "pics/slides/grabim.jpg";
Slide[7] = "pics/slides/nanoroll.jpg"; 
Slide[8] = "pics/slides/fold.jpg";
Slide[9] = "pics/slides/roller.jpg";
Slide[10] = "pics/slides/barcone.jpg";
Slide[11] = "pics/slides/grapore.jpg";
Slide[12] = "pics/slides/f6.jpg";
Slide[13] = "pics/slides/rotor.jpg";
Slide[14] = "pics/slides/rods.jpg";
Slide[15] = "pics/slides/NPS.jpg";
Slide[16] = "pics/slides/prot.jpg";
Slide[17] = "pics/slides/ion-drag.jpg";
Slide[18] = "pics/slides/push.jpg";
Slide[19] = "pics/slides/chinan.jpg";
Slide[20] = "pics/slides/cone.jpg";
Slide[21] = "pics/slides/field.jpg";
Slide[22] = "pics/slides/puma.jpg";
Slide[23] = "pics/slides/flow.jpg";
Slide[24] = "pics/slides/BN.jpg";
Slide[25] = "pics/slides/polar.jpg";
Slide[26] = "pics/slides/TIS.jpg";
Slide[27] = "pics/slides/solid.jpg";
Slide[28] = "pics/slides/NDCP.jpg";
Slide[29] = "pics/slides/D2S2.jpg";
Slide[30] = "pics/slides/DCP.jpg";
Slide[31] = "pics/slides/conv.jpg";
Slide[32] = "pics/slides/cat.jpg";
Slide[33] = "pics/slides/helix.jpg";
Slide[34] = "pics/slides/phonon.jpg";

Caption[0] = "A modular platform for nanomedicine based on dendronized copolymers";
Caption[1] = "Highly PEG-ylated sterically stabilized micelles in aqueous solutions";
Caption[2] = "Controlled self-assembly of filled micelles on nanotubes";
Caption[3] = "Electronic structures of porous nanocarbons";
Caption[4] = "Molecular filtration in nanoparticle membranes";
Caption[5] = "Self-standing nanoparticle membranes and capsules";
Caption[6] = "Self-assembly of graphene-membrane superstructures";
Caption[7] = "Self-assembly of graphene nanoribbons on carbon nanotubes";
Caption[8] = "Nanodroplet induced folding of graphene";
Caption[9] = "Rolling of nanorods on water by light";
Caption[10] = "Controllable nanotube-peptide channels";
Caption[11] = "Passage of ions through nanopores formed in graphene monolayers";
Caption[12] = "Rotary tunneling motor";
Caption[13] = "Water propeller with hydrophobic blades";
Caption[14] = "Field-driven Self-assembly of Nanorods";
Caption[15] = "Self-assembly of Nanoparticles";
Caption[16] = "Nesting of solvated proteins on optimally modified surfaces"
Caption[17] = "Dragging of nanodroplets by distantly solvated ions"
Caption[18] = "Dragging of molecules by separately flowing liquids"; 
Caption[19] = "Control of catalysis on deformed nanoscale surfaces";
Caption[20] = "Metal-doped carbon nanocones";
Caption[21] = "Extended electronic states above metal-doped C nanostructures"; 
Caption[22] = "Laser-induced driving of atoms and molecules in carbon nanotubes";
Caption[23] = "Current generation by polar liquids flowing around nanotubes";
Caption[24] = "Photo-current generation in BN nanotubes";
Caption[25] = "Polarization and piezoelectricity in BN nanotubes";
Caption[26] = "Tubular image states above segmented nanotubes";
Caption[27] = "Tubular image states in 2D arrays of nanotubes";
Caption[28] = "Preparation of arbitrary wave-packets made of non-degenerate states";
Caption[29] = "Light-induced complete switching of molecular chirality";
Caption[30] = "Control of Jahn-Teller molecular motors";
Caption[31] = "Encoding and decoding of quantum states by light pulses";
Caption[32] = "Preparation of entangled light-matter states";
Caption[33] = "Current-induced rotation of helical molecular conductors";
Caption[34] = "Nonequilibrium spectral density of electrons coupled to phonons"; 


Link[0] = "research.html";
Link[1] = "research.html";
Link[2] = "research.html";
Link[3] = "research.html";
Link[4] = "research.html";
Link[5] = "research.html";
Link[6] = "research.html";
Link[7] = "research.html";
Link[8] = "research.html";
Link[9] = "research.html";
Link[10] = "research.html";
Link[11] = "research.html";
Link[12] = "research.html";
Link[13] = "research.html";
Link[14] = "research.html";
Link[15] = "research.html";
Link[16] = "research.html";
Link[17] = "research.html";
Link[18] = "research.html";
Link[19] = "research.html";
Link[20] = "research.html";
Link[21] = "research.html";
Link[22] = "research.html";
Link[23] = "research.html";
Link[24] = "research.html";
Link[25] = "research.html";
Link[26] = "research.html";
Link[27] = "research.html";
Link[28] = "research.html";
Link[29] = "research.html";
Link[30] = "research.html";
Link[31] = "research.html";
Link[32] = "research.html";
Link[33] = "research.html";
Link[34] = "research.html";







var t;
var j = 0;
var p = Slide.length;

var fetchSlide = new Array();

for(i=0; i<p; i++)
{
	fetchSlide[i] = new Image();
	fetchSlide[i].src = Slide[i];
}

function getNextSlide()
{
	document.images.SlideShowImg.src = fetchSlide[j].src;
	document.getElementById("SlideShowCaption").innerHTML = Caption[j];
	document.getElementById("SlideShowImgLink").href = Link[j];
	document.getElementById("SlideShowCaptionLink").href = Link[j];
	j++;
	if(j > (p-1))
		j=0;
	t = setTimeout('getNextSlide()', speed);
}

