// JavaScript Document

var neckurl = new Array();
var bracurl = new Array();
var earurl = new Array();
var pendanturl = new Array();
var ringurl = new Array();

var neckurl1 = new Array();
var bracurl1 = new Array();
var earurl1 = new Array();
var pendanturl1 = new Array();
var ringurl1 = new Array();

neckurl[0] = 'images/neck_on.gif';
neckurl[1] = 'images/neck_off.gif';

bracurl[0] = 'images/brac_on.gif';
bracurl[1] = 'images/brac_off.gif';

earurl[0] = 'images/ear_icon_on.gif';
earurl[1] = 'images/ear_icon_off.gif';

pendanturl[0] = 'images/pendant_on.gif';
pendanturl[1] = 'images/pendant_off.gif';

ringurl[0] = 'images/ring_on.gif';
ringurl[1] = 'images/ring_off.gif';

// inside page nav

neckurl1[0] = '../../images/neck_on.gif';
neckurl1[1] = '../../images/neck_off.gif';

bracurl1[0] = '../../images/brac_on.gif';
bracurl1[1] = '../../images/brac_off.gif';

earurl1[0] = '../../images/ear_icon_on.gif';
earurl1[1] = '../../images/ear_icon_off.gif';

pendanturl1[0] = '../../images/pendant_on.gif';
pendanturl1[1] = '../../images/pendant_off.gif';

ringurl1[0] = '../../images/ring_on.gif';
ringurl1[1] = '../../images/ring_off.gif';

//function for root folder

function changeMain(whichColor){
neck1.src = neckurl[whichColor];
}
function changeMain1(whichColor){
brac1.src = bracurl[whichColor];
}
function changeMain2(whichColor){
ear1.src = earurl[whichColor];
}
function changeMain3(whichColor){
pendant1.src = pendanturl[whichColor];
}
function changeMain4(whichColor){
ring1.src = ringurl[whichColor];
}

//function for sub folder

function changeImg(whichColor){
neck.src = neckurl1[whichColor];
}
function changeImg1(whichColor){
brac.src = bracurl1[whichColor];
}
function changeImg2(whichColor){
ear.src = earurl1[whichColor];
}
function changeImg3(whichColor){
pendant.src = pendanturl1[whichColor];
}
function changeImg4(whichColor){
ring.src = ringurl1[whichColor];
}