// (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/petite.jpg';
Picture[2]  = 'images/slides/sweety.jpg';
Picture[3]  = 'images/slides/horizon.jpg';
Picture[4]  = 'images/slides/milleniumwave.jpg';
Picture[5]  = 'images/slides/longsweety.jpg';
Picture[6]  = 'images/slides/prettywoman.jpg';
Picture[7]  = 'images/slides/perspective.jpg';
Picture[8]  = 'images/slides/madamz.jpg';
Picture[9]  = 'images/slides/sunset.jpg';
Picture[10]  = 'images/slides/shortandeasy.jpg';
Picture[11]  = 'images/slides/eurowave.jpg';
Picture[12]  = 'images/slides/summerbeauty.jpg';
Picture[13]  = 'images/slides/beacom.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]  = "A Clary's Classic, the Petite is made on a smaller-sized foundation, designed for the typically petite person. Enjoy the simplicity of care for this 100% naturally curly wig, just wash and drip-dry. The Petite features no part, but rather bangs that can be worn full or swept to the side.";
Caption[2]  = "The name says it all. The Sweety, made on a smaller-sized foundation for a typically petite person, carries its waves to softly frame the face of the wearer. With a center part and bangs, your desired look is easily accomplished.";
Caption[3]  = "The Horizon is naturally wavy, but as demonstrated here, can be blow-dried to achieve a straight with fullness/body look. Among its features are bangs, regular side part, slight layers, and is made standard on a smaller/narrower cap/foundation.";
Caption[4]  = "Millennium Wave, perfectly suited for most elegant, glamorous of occasions, is beautifully designed, all one length reaching far below the shoulder. Millennium Wave is our longest wavy style. An ideal &quot;after-five&quot; style, it is not your everyday wig. With its regular side part and soft natural wave, it makes the finest of impressions.";
Caption[5]  = "All of the benefits of the Sweety with a few added inches, the Long Sweety is also made on a smaller-sized foundation for a typically petite person. This style is structured so that the top has a straighter look and becomes wavier as it reaches the mid-section to the bottom.";
Caption[6]  = "Inspired by the motion picture, Pretty Woman, this style is by far a hit. It is a below-shoulder-length with fringes to frame the face with soft, wavy layers. Pretty Woman is a most naturally looking full wavy piece, so layered that it could be worn in many styles, ranging from up-do, half-pony, or simply blow-dried for a straight look.";
Caption[7]  = "The Perspective is fully layered and wavy. Its medium length typically reaches below the chin. Shown here blow-dried for a straight, full-bodied look. Regular side part is standard.";
Caption[8]  = "Most likely, this is the perfect style for you. Classic, elegant, and always beautiful, the Madam Z, created by Clary for herself, is the Classics Collection's absolute masterpiece. An all-time favorite, its popularity is evident in leading our top-five best-sellings styles. The Madam Z allows your stylist to create either soft wisps or full bangs in the front, or to give it a totally swept-off-the-face style. It features a regular side part, fullness, soft layers, and reaches just below chin length. The Madam Z can be blow dried, to achieve an optimal straight-with-body or relaxed wave look.";
Caption[9]  = "Part of our latest collection, this beautiful Sunset is like getting two-in-one: a soft, airy, wavy wig or a contemporary layered classic. With its side and front fringe, it gives off an updated sophisticated look. At about 14&quot; it is perfectly shoulder length.";
Caption[10]  = "Short & Easy, the name says it all. It is not so short literally, but rather just gives off a short and easy look, because of its natural baby curls. The Short & Easy is one of our popular just about shoulder-length styles, it is slightly layered and more to the fuller side, without bangs.";
Caption[11]  = "Like the Madam Z, this is one of our top-five selling styles, just a little softer looking, fewer layers and longer. Reaching the mid-neck area, full and nearly all one length, the Euro Wave, is a beautiful, elegant and dressier style.";
Caption[12]  = "Summer Beauty is also part of our Classics Collection. It is shoulder-length, wavy, and softly layered. With no bangs, it is meant to serve as an away from the face style. However, it has the capacity for soft side bangs to be created as part of the style.";
Caption[13]  = "Designed with the petite look in mind, the Bea features naturally curly hair. Front hairline is swept away from the face, without any typical hair partition. Bea is the shortest curly style.";

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