// JavaScript Document
// (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/juniper.jpg';
Picture[2]  = 'images/nokia.jpg';
Picture[3]  = 'images/sureid.jpg';
Picture[4]  = 'images/netopia.jpg';
Picture[5]  = 'images/sourcefire.jpg';
Picture[6]  = 'images/alcatel.jpg';
Picture[7]  = 'images/checkpoint.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]  = "Juniper Networks transforms the business of networking. A leading global provider of networking and security solutions, Juniper Networks maintains an intense focus on customers who derive strategic value from their networks.";
Caption[2]  = "Nokia enables secure, reliable and manageable connectivity solutions through a complete system approach to IP security. Unlike other offerings, the Nokia complete system approach fully integrates industry-leading software with purpose-built platforms that are easy to implement and operate - all backed by First Call - Final Resolution global support.";
Caption[3]  = "SureID is a recognized leader in the rapidly expanding market for Strong Authentication Security products. Based in New Jersey, SureID delivers fully integrated and scalable Security applications designed from the ground up to take full advantage of our patent pending BioCade3 and BIKE technologies.";
Caption[4]  = "Netopia enables carriers and service providers to improve their profitability with expanded broadband service offerings focused on the needs of distributed, small and medium enterprises, small office/home office professionals, and residential subscribers.";
Caption[5]  = "Sourcefire’s ground-breaking 3D approach – Discover, Determine, Defend – is a comprehensive intelligent network defense system that unifies intrusion and vulnerability management technologies to provide customers with the most effective, real-time network security available for today’s real world challenges.";
Caption[6]  = "Alcatel provides communications solutions to telecommunication carriers, Internet service providers and enterprises for delivery of voice, data and video applications to their customers or employees.";
Caption[7]  = "Check Point Software Technologies Ltd. is the worldwide leader in securing the Internet. It is the confirmed market leader of both the worldwide VPN and firewall markets. Through its Next Generation product line, the company delivers a broad range of intelligent Perimeter, Internal and Web security solutions that protect business communications and resources for corporate networks and applications, remote employees, branch offices and partner extranets.";
 
// =====================================
// 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();
}}
