//Script to autochange image on epg_home page
//pre-cache images
var imgs = new Array()
var caption = new Array()
var alttag = new Array()

imgs[0] = new Image(275, 192);
imgs[1] = new Image(275, 192);
imgs[2] = new Image(275, 192);
imgs[3] = new Image(275, 192);
imgs[4] = new Image(275, 192);

imgs[0].src = "images/surfaces.gif"
imgs[1].src = "images/wafer.gif"
imgs[2].src = "images/mccray.png"
imgs[3].src = "images/lezec.png"
imgs[4].src = "images/nil_sog.jpg"

caption[0] = "A simple, fast all-plasma surface modification technology has been developed by NanoFab staff to form super-hydrophobic and/or super-hydrophilic surfaces over large areas. The wetting property can be switched between super-hydrophobic and super-hydrophilic by simply changing the plasma chemistry. Both super-hydrophobic and hydrophilic areas have been created on a single surface by using a stencil mask to selectively modify areas on the surface with different gases.  Reference: <a href=\"../epg/Pubs/pub.html#nog003\">Lei Chen, G. Henein and J.A. Liddle, Nanotech Technical Proceedings Vol.3, 194-197 (2009)</a>";

caption[1] = "The CNST NanoFab is now offering its users a silicon nitride membrane process. Membranes can be used as starting &quot;platforms&quot; for the fabrication of a multiplicity of micro-and nanoscale devices. Membranes 100 nm thick can be fabricated in sizes ranging from 1 mm x1 mm to 5 mm x 5 mm, suspended over a silicon frame that is typically 1 cm x 1 cm. The silicon nitride is grown by LPCVD, and is under a tensile stress of 150-250 MPa.  For further information, please contact <a href=\"mailto:marc.cangemi@nist.gov\">Marc Cangemi</a> or <a href=\"mailto:gerard.henein@nist.gov\">Gerard Henein</a>.";

caption[2] =  "Factories of the Future. Carbon nanotubes are becoming the bricks and mortar for 21st century technologies. Microrobots will assemble nanomaterials into complex useful products. NIST provides the infrastructure for microrobot operation, leveraging U.S. and international research efforts (Carnegie-Mellon, U.S. Naval Academy, ETH-Zurich, etc.). <br>(<i>Research by C. McCray of EEEL and J. Gorman of MEL</i>)";

caption[3] = "Nanoscale Interaction of Light and Matter. Light interacts with nanostructured matter to produce novel nanoscale phenomena, enabling the fabrication of an Integrated Nanoplasmonic Measurement Structure with the following functionality: 1) On-chip optical communications to break speed bottleneck; 2) Optical sensing at the nanoscale for chemical or biomolecule detection at physiologically relevant concentrations; 3) Intense fields for nanoparticle manipulation<br>(<i>Research by H. Lezec and K. Chau of CNST</i>)";

caption[4] = "Nano-imprint lithography is a promising technique for building the complex patterns of insulating layers in future generations of integrated circuits. This electron micrograph shows the cross-section of a typical spin-on organosilicate glass microcircuit feature. The process forms a dense, stronger skin on the outside and a nanoporous region in the interior with superior electrical insulation. See NIST <a href=\"http://www.nist.gov/public_affairs/techbeat/tb2008_0429.htm#nil\">News Article</a><br>(<i>Research by H.W.&nbsp;Ro, R.L.&nbsp;Jones, H.-J.&nbsp;Lee, A.&nbsp;Karim, E.K.&nbsp;Lin, C.L.&nbsp;Soles, H.&nbsp;Peng, D.W.&nbsp;Gidley, D.R.&nbsp;Hines, D.Y.&nbsp;Yoon, K.-i.&nbsp;Niihara and H.&nbsp; Jinnai</i>)";



alttag[0] = "Super-hydrophillic/super-hydrophobic surfaces";
alttag[1] = "100mm-diameter membrane wafer";
alttag[2] = "Factories of the Future";
alttag[3] = "Nanoscale Interaction of Light and Matter";
alttag[4] = "Nanoimprint Lithography Tests";


//counter variable to increment through image array
var count = 0;
function play() {
   document.slideshow.src = imgs[count].src;
document.getElementById("blurb").title=alttag[count];
document.getElementById("CaptionBox").innerHTML= caption[count];  
   count++;
   if (count==5) 
       count = 0;
//recall function play every 20 seconds     
   timer=setTimeout("play()",20000); } 



   
