// (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 = 0;

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/slides/cmc.jpg';
Picture[2]   = 'images/slides/vanessaMD.jpg';
Picture[3]   = 'images/slides/funkyMD.jpg';
Picture[4]   = 'images/slides/cinderellaMD.jpg';
Picture[5]   = 'images/slides/longbranch.jpg';
Picture[6]   = 'images/slides/model55.jpg';
Picture[7]   = 'images/slides/theforestmulti.jpg';
Picture[8]   = 'images/slides/fairytale.jpg';
Picture[9]   = 'images/slides/newwayshortMD.jpg';
Picture[10]  = 'images/slides/eurodreamMD.jpg';
Picture[11]  = 'images/slides/tinyMD.jpg';
Picture[12]  = 'images/slides/newwayMD.jpg';
Picture[13]  = 'images/slides/im.jpg';
Picture[14]  = 'images/slides/shanghaiMD.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]   = "all one length, mono top, clear cut, straight. Our new advanced Monofilament top causes it to be flatter than the traditional French part.";
Caption[2]   = "The Vanessa is a stunning style. Obvious layers surround the face, enhancing the wearer’s facial features, creating a more intense look. Its length reaches the shoulders. Perfect for any elegant occasion.";
Caption[3]   = "This is Clary’s shortest straight style. It is a perky, youthful, and FUNKY look. It has a bangs, a side part, and tapered foot/back.";
Caption[4]   = "Elegant, sweet, charming… are just some of the words describing this beautiful style. Made to look like, you got it, Cinderella’s hairstyle, this wig can be worn with a half-ponytail, all down, or with a headband. The Cinderella is an all one length wig about 16&quot; and is slightly full with body.";
Caption[5]   = "About 20 inches below shoulder all one length...Comes with our brand new Multi-directional part.";
Caption[6]   = "The Model 55 is a MD with well-balanced short layers present an easy-to-maintain, presentable stylish look. The Model 55 is a popular alternative to the Forest Multi and the Shang-Hai MD.";
Caption[7]   = "The Forest has been an immediate sensation since its introduction. What is so attractive about this particular style is its combination of the soft layers and the comfortable length. Perfectly below chin length, The Forest is long, and yet is still somewhat on the short side. It is youthful and professional looking. This exceptionally versatile style makes this wig ideal for both casual and elegant events.";
Caption[8]   = "The Fairy Tale, part of our newest collection was created to provide a longer alternative to our ever so popular Euro-Dream MD. Progressive, stylish, a “must have” for the fashionable young woman.";
Caption[9]   = "The New Way Short starts off the longer styles collection. This wig is specifically manufactured and comprised of many different layers, so it can give off the true, natural look of a layered haircut and, rather than just a layered wig. It possesses body and fullness with lots of life to it, yet it is easy to wear and handle.";
Caption[10]  = "As a longer version of the Vanessa, the Euro Dream, is truly a dream style that is long (below shoulder) and sleek with bounce. Soft, strategically-placed layers create a natural feel and striking effect.";
Caption[11]  = "We’ve been making the Tiny since the early 90’s. It is one of the essential Clary’s Classics sought after internationally. The Tiny is an ageless style with a natural looking hairline. It features a wedge in the front to add height, and clean lines to achieve a neat look. The Tiny has a nearly tapered back, and has body to it. It generally does not feature any wisps or bangs, but the hair rather falls to the side. It is made with a regular side part.";
Caption[12]  = "New Way has a fun, zestful look created by its shaggy shoulder-length layers. Vibrant and energetic, you’ll love wearing it!";
Caption[13]  = "Youthful and superbly elegant, the IM is our longest all-one-length 22-24 inches it is made with a  multi-directional top to achieve the sleekest natural look possible.";
Caption[14]  = "This particular style has become our most popular item within our short collection. One of its great advantages is its ease of handling.  Its originally implemented layers make the Shang Hai look and feel especially natural. It is not your typical straight wig, since it has just enough body to it to give it the perfect lift. It is available for special order with a center or opposite-side part.";

// =====================================
// 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();
}}
