var pic1x = new Array( 	'HJ04.jpg', 	'HV12.jpg', 	'HV11.jpg');
var pic2x = new Array( 	'B7026.jpg', 	'B40109.jpg', 	'B13121.jpg');
var pic3x = new Array( 	'8188G.jpg', 	'8114J.jpg', 	'8293E.jpg');

var logo1x = new Array( 'HJ04-.jpg', 	'HV12-.jpg', 	'HV11-.jpg');
var logo2x = new Array( 'B7026-.jpg', 	'B40109-.jpg', 	'B13121-.jpg');
var logo3x = new Array( '8188G-.jpg', 	'8114J-.jpg', 	'8293E-.jpg');

var txt1x=new Array('Class III Waterproof HI-VIS Federal High Way Jacket','Class III HI-VIS Safety Vest','HI-VIS Mesh Safety Vest');
var txt2x=new Array('Mossgreen Wood Camouflage Duffel Bag','Mossgreen Wood Leak Proof Insulated 24-Pack Cooler Box','Fashion Washed Canvas Bag');
var txt3x=new Array('ANSI Fluorescent Orange With Ascent Mossgreen Wood Camo Visor Low Profile Cap','Constructed Brushed Cotton Twill Racing Flame Low Profile Ca','Constructed Mossgreen Wood Camo Low Profile Ca');

var url1x=new Array('688','686','685');
var url2x=new Array('678','679','677');
var url3x=new Array('670','668','675');

var max0 = 2;
var current = 0;

function init()
{
        pic1y.src='images/'+pic1x[current]
        logo1.src='images/'+logo1x[current]
        txt1.innerText=txt1x[current]
        url1.href='product.asp?id='+url1x[current]
        pic2y.src='images/'+pic2x[current]
        logo2.src='images/'+logo2x[current]
        txt2.innerText=txt2x[current]
        url2.href='product.asp?id='+url2x[current]
        pic3y.src='images/'+pic3x[current]
        logo3.src='images/'+logo3x[current]
        txt3.innerText=txt3x[current]
        url3.href='product.asp?id='+url3x[current]
        
	current+=1
	if (current>max0){current=0}
	setTimeout('init()',2000);
}


