<!--
function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

// (C) 2003 by CodeLifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'images/rotate1.jpg';
Picture[2]  = 'images/rotate1.jpg';
Picture[3]  = 'images/rotate1.jpg';
Picture[4]  = 'images/rotate1.jpg';
Picture[5]  = 'images/rotate2.jpg';
Picture[6]  = 'images/rotate2.jpg';
Picture[7]  = 'images/rotate2.jpg';
Picture[8]  = 'images/rotate2.jpg';
Picture[9]  = 'images/rotate3.jpg';
Picture[10] = 'images/rotate3.jpg';
Picture[11] = 'images/rotate3.jpg';
Picture[12] = 'images/rotate3.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "<p><img src=images/facts_bl.gif></p><p name=rotate1_20>In 2005, U.S. exports <em>and</em> imports of goods and services support nearly one in five U.S. jobs.</p>";
Caption[2]  = "<p><img src=images/facts_tl.gif></p><p name=rotate1_8>More than one million U.S. manufacturing jobs are supported by trade.</p>";
Caption[3]  = "<p><img src=images/facts_tr.gif></p><p name=rotate1_17>U.S. agricultural exports support 836,000 U.S. jobs and help feed the world</p>";
Caption[4]  = "<p><img src=images/facts_br.gif></p><p name=rotate1_4>U.S. jobs supported by goods exports pay 13% to 18% more than the national average.  Fewer trade barriers mean more, higher paying jobs.</p>";
Caption[5]  = "<p><img src=images/facts_bl.gif></p><p name=rotate2_10>Services account for 8 of 10 U.S. jobs, with service exports growing and showing significant growth potential for further job creation.</p>";
Caption[6]  = "<p><img src=images/facts_tl.gif></p><p name=rotate2_14>With more than 95% of the world’s population living outside the United States, we must continue to seek new markets for our exports to ensure continued economic growth.</p>";
Caption[7]  = "<p><img src=images/facts_tr.gif></p><p name=rotate2_16>The U.S .is the world’s largest service exporter.  US services exports exceeded $380 billion in 2005, with a U.S. services <strong>surplus</strong> of approximately $66 billion. </p>";
Caption[8]  = "<p><img src=images/facts_br.gif></p><p name=rotate3_5>Consumers benefit from imports which have led to improved variety, quality and price of goods.</p>";
Caption[9]  = "<p><img src=images/facts_bl.gif></p><p name=rotate3_18>Approximately half of U.S. Merchandise imports are raw materials, capital goods and industrial products used by U.S. Manufacturers to make goods in the United States.</p>";
Caption[10] = "<p><img src=images/facts_tl.gif></p><p name=rotate3_9>According to the U.S. Department of Commerce, U.S. total exports were valued at more than $900 billion in 2005.  </p>";
Caption[11] = "<p><img src=images/facts_tr.gif></p><p name=rotate3_13>In 2005, U.S. Companies sold their products in 227 foreign markets.</p>";
Caption[12] = "<p><img src=images/facts_br.gif></p><p name=rotate3_21>Today, trade supports 31 million jobs in the United States, or 18.1 percent of all jobs.</p>";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}
function startauto(){
	control('F');
	autoctl=setInterval('automatecontrol()',6000);
}
function automatecontrol(){
	control('F');
}
function autoctlstop(){
	clearInterval(autoctl);
}

var time=new Date();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
//-->
