//Drop-in slideshow- By Dynamic Drive
						//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
						//This credit MUST stay intact for use

						var slideshow_width='0' //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist)
						//var slideshow_height='154px' //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist)
						var slideshow_height='0' //this is used for the holiday e-card 
						
						var pause=3000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)
						
						var dropimages=new Array()
						//SET IMAGE PATHS. Extend or contract array as needed
						dropimages[0]="images/skinsolwomanimagehomepage.jpg"
						//dropimages[0]="images/ecards.gif"
						//dropimages[1]="photo2.jpg"
						//dropimages[2]="photo3.jpg"
						
						////NO need to edit beyond here/////////////
						
						var preloadedimages=new Array()
						for (p=0;p<dropimages.length;p++){
						preloadedimages[p]=new Image()
						preloadedimages[p].src=dropimages[p]
						}
						
						var ie4=document.all
						var dom=document.getElementById
						
						if (ie4||dom)
						document.write('<div align=left style="position:relative;width:'+slideshow_width+';height:'+slideshow_height+';overflow:hidden"><div id="canvas0" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';top:-'+slideshow_height+'"></div></div>')
						else
						document.write('<img name="defaultslide" src="'+dropimages[0]+'">')
						
						var curpos=parseInt(slideshow_height)*(-1)
						var degree=10
						var curcanvas="canvas0"
						var curimageindex=0
						var nextimageindex=0
						var loadedImage = false;
						
						function movepic(){
						if (curpos<0){
						   curpos=Math.min(curpos+degree,0)
						   tempobj.style.top=curpos+"px"
						}
						else{
						   clearInterval(dropslide)
						   nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas0"
						   tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
						   tempobj.innerHTML='<img src="'+dropimages[nextimageindex]+'">'
						   nextimageindex=(nextimageindex<dropimages.length-1)? 0 : 0
						   setTimeout("rotateimage()",pause)
						}
						
						}
						
						function rotateimage(){
						   if(loadedImage)
						      return;
						
						   if (ie4||dom){
						      resetit(curcanvas)
						      var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
						      crossobj.style.zIndex++
						      var temp='setInterval("movepic()",50)'
						      dropslide=eval(temp)
						      curcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas0"
						   }
						   else
						   document.images.defaultslide.src=dropimages[curimageindex]
						   curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0
						   loadedImage = true;
						}
						
						function resetit(what){
						   curpos=parseInt(slideshow_height)*(-1)
						   var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
						   crossobj.style.top=curpos+"px"
						}
						
						function startit(){
						   var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
						   //crossobj.innerHTML='<img src="'+dropimages[curimageindex]+'">'
						   //rotateimage()
						   runSlideShow()
						   slideit() //Used to Rotate Images on the bottom left hand corner
						   setbackground(); //function is in UI.asp page to rotate the images of the clients on the home page
						   
						 
						}
						
						 
						// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 500000

// Duration of crossfade (seconds)
var crossFadeDuration = 30

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images2/hg_Gift.jpg'
//Pic[1] = '2.jpg'
//Pic[2] = '3.jpg'
//Pic[3] = '4.jpg'
//Pic[4] = '5.jpg'

// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}






function runSlideShow(){
   if (document.all){
      //document.images.SlideShow.style.filter="blendTrans(duration=50)"
      //document.images.SlideShow.style.filter="blendTrans(duration=2)"
      //document.images.SlideShow.filters.blendTrans.Apply()      
   }
   //document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      //document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}

						if (ie4||dom)
						{
						   window.onload = startit;
						}
						else
						   setInterval("rotateimage()",pause)
						   
						   
						   
//---------------------------------------------------------------------------------
//Code here is for the holiday gift card rotation in the bottom left hand side. It 
//rotat the gift cetificates and the e-cards display
//---------------------------------------------------------------------------------
var step=1
var whichimage=1
function slideit(){
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
whichimage=step
if (step<3)
step++
else
step=1
setTimeout("slideit()",5000)
}

function slidelink(){
if (whichimage==1)
//window.location="productDetail.asp?ProductID=222&CatId=7"
window.location="gifts.asp"
else if (whichimage==2)
//window.location="productDetail.asp?ProductID=199&CatId=13"
window.location="giftsPackage.asp"
else if (whichimage==3)
//window.location="productDetail.asp?ProductID=6&CatId=1"
window.location="giftsVirtual.asp"
//else if (whichimage==4)
//window.location="products.asp?catid=17"

}
//--------------------------------------------------------------------------
						-->
