 
var speed = 5000;
var crossFadeDuration = 1;
var Pic = new Array();
var PicLink = new Array();
var PicLogo = new Array();


Pic[0] = 'images/hp_main_hamptonf.jpg';
Pic[1] = 'images/hp_main_kendo.jpg';
Pic[2] = 'images/hp_main_hampton.jpg';
Pic[3] = 'images/hp_main_hamptons.jpg';
Pic[4] = 'images/hp_main_soho.jpg';
Pic[5] = 'images/hp_main_skandia.jpg';
Pic[6] = 'images/hp_main_essenstahl.jpg';
Pic[7] = 'images/hp_main_argent.jpg';

PicLink[0] = 'product_center.asp?dept_id=1060'; 
PicLink[1] = 'product_center.asp?dept_id=1003';
PicLink[2] = 'product_center.asp?dept_id=1000';
PicLink[3] = 'product_center.asp?dept_id=1001';
PicLink[4] = 'product_center.asp?dept_id=1002';
PicLink[5] = 'product_center.asp?dept_id=1004';
PicLink[6] = 'product_center.asp?dept_id=1005';
PicLink[7] = 'product_center.asp?dept_id=1006'; 

PicLogo[0] = 'hp_logo_hamptonf'; 
PicLogo[1] = 'hp_logo_kendo';
PicLogo[2] = 'hp_logo_hampton';
PicLogo[3] = 'hp_logo_hamptons';
PicLogo[4] = 'hp_logo_soho';
PicLogo[5] = 'hp_logo_skandia';
PicLogo[6] = 'hp_logo_essenstahl';
PicLogo[7] = 'hp_logo_argent'; 

var t;
var j = 0;
var n;
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.hp_mainFeature.style.filter="blendTrans(duration=crossFadeDuration)";
    document.images.hp_mainFeature.filters.blendTrans.Apply();
    document.images.hp_mainFeature.filters.blendTrans.Play();
	}  

if (document.images.hp_mainFeature){
	
	n = j - 1
	if (j == 0 ) { n = p - 1 } 
	document.getElementById('' +PicLogo[n] ).src =  'images\\'  + PicLogo[n] + '.jpg'; 
    document.getElementById('' +PicLogo[j] ).src =  'images\\'  + PicLogo[j] + '_on.jpg'; 
	document.images.hp_mainFeature.src = Pic[j];    
    document.getElementById('FeatureLink').href = PicLink[j];
    j = j + 1
    if (j > (p-1)) j=0
    t = setTimeout('runSlideShow()', speed)}    

}

if (document.all||document.getElementById)
  window.onload=new Function('runSlideShow()')
  
function hp_logo_click(brand_name, brand_num) {
	//clearTimeout(t);
	document.images.hp_mainFeature.src='images\\hp_main_' + brand_name + '.jpg';
	document.getElementById('FeatureLink').href=PicLink[brand_num];   
	
	document.getElementById('' +PicLogo[0] ).src =  'images\\'  + PicLogo[0] + '.jpg'; 
	document.getElementById('' +PicLogo[1] ).src =  'images\\'  + PicLogo[1] + '.jpg'; 
	document.getElementById('' +PicLogo[2] ).src =  'images\\'  + PicLogo[2] + '.jpg'; 
	document.getElementById('' +PicLogo[3] ).src =  'images\\'  + PicLogo[3] + '.jpg'; 
	document.getElementById('' +PicLogo[4] ).src =  'images\\'  + PicLogo[4] + '.jpg'; 
	document.getElementById('' +PicLogo[5] ).src =  'images\\'  + PicLogo[5] + '.jpg'; 
	document.getElementById('' +PicLogo[6] ).src =  'images\\'  + PicLogo[6] + '.jpg'; 
	document.getElementById('' +PicLogo[7] ).src =  'images\\'  + PicLogo[7] + '.jpg'; 
	
    document.getElementById('' +PicLogo[brand_num] ).src =  'images\\'  + PicLogo[brand_num] + '_on.jpg';  


}