function loadImages()

//	Load images
{
	mens = new Image(0,0);
	mens.src = 'images/navmens.gif';
	bridal = new Image (0,0);
	bridal.src = 'images/navbridal.gif';
	img13 = new Image(0,0);
	img13.src = 'images/img13-l.jpg';
	img10 = new Image(0,0);
	img10.src = 'images/img10-l.jpg';
	img001 = new Image(0,0);
	img001.src = 'images/img001l.jpg';
}

function changeBox(boxName,img)

//	Change images depending on mouse action
{
				e=eval("document."+boxName);
				e.src = eval(img+".src");
}

//	Set text variables
	var infoText = new Array(30);
	infoText[0] = 'Move your mouse over any picture to see a description here, or click on it for a larger picture...';
	infoText[1] = 'Cotton suits with woven border work, available with salwar or churidar. Matching crushed shaded dupatta.';
	infoText[2] = 'Denim bootleg trousers and matching top, with bandini trimmings and dupatta.';
  infoText[3] = 'In jute fabric with coloured thread embroidery and matching chiffon dupatta.';	
  infoText[4] = 'In tassur silk with matching copper embroidery and crushed silk dupatta. Available in trousers and churidar.';	
  infoText[5] = 'Tassur silk with patchwork, reversible tops and shaded matching dupattas with coloured sequence work.';	
  infoText[6] = 'Traditional bandini chiffon tops with trousers or churidar and shaded matching dupattas.';			
	infoText[7] = 'Badla block print work on chiffon tops and dapattas with trousers or churidar.';			
	infoText[8] = 'Pure silk and organza patch work with coloured sequence matching embroidery.';
	infoText[9] = 'Shaded vibrant crepe silks and chiffons with criss-cross coloured glass bead work embroidery with matching shaded chiffon dapattas.';	
	infoText[10] = 'Georgettes in shaded orange with circular orange sequence embroidery, matching shaded dapatta.';
	infoText[11] = 'Tassur silk with coloured glass bead work embroidery and stripped silk patch work, with matching embroidered dapatta.';
	infoText[12] = 'Georgette with coloured zardosi work and matching dapattas.';
	infoText[13] = 'In white silk/cotton trousers with hanging bead work and matching top and chiffon dapatta.';
	infoText[14] = 'Shervani with embroidery on collar and front panel, matching trousers and a sleeveless full length jacket, with matching embroidery.  Net lengha and top with silk brocade lining, matching net dapatta, all finished in gold zardosi embroidery.';
	infoText[15] = 'Saree and blouse in crinkle tissue silk with gold zardosi work.';
	infoText[16] = 'Mermaid skirt and top in crinkle tissue silk with matching net dapatta, hand finished in gold zardosi work.';
	infoText[17] = 'Mens jodhpuri suit with black glass bead work on jacket. Straight skirt with blouse with matching waistline jacket, finished in silver zardosi work.';
	infoText[18] = 'Mermaid skirt in net and lazer tissue silk with matching top and net dapatta finished in silver zardosi embroidery. Mens black suit with matching black embroidery jodhpuri.';
	infoText[19] = 'Mens shervani trouser suit with sleeveless full length jacket, matching embroidery. Mermaid skirt in silk brocade with copper and stone work and matching organza silk dapatta with embroidery.';
	infoText[20] = 'Lengha and top in net with matching silk brocade lining and matching organza silk dapatta with embroidery.';
	infoText[21] = 'Mens shervani with silver embroidery. Sleeveless waistcoat inside, with matching trousers. Net lengha, dapatta with silk brocade lining and top, finished beautifully with heavy zardosi work.';
	infoText[22] = 'Mermaid skirt and top in pure crepe. Skirt with net dapatta, with silver zardosi work.';
	infoText[23] = 'Bootleg trousers and top, in Georgette with antique look zardosi work.';
	infoText[24] = 'Gold silk brocade top with bootleg trousers, matching organza dapatta. Gold zardosi embroidery. Mens embroidered shervani with matching trousers.';
	infoText[25] = 'Gold net lengha and top with zardosi work and matching embroidered net dapatta.';
	infoText[26] = 'Contrast lengha with silk brocade top and matching dapatta, gold embroidered work.';
	infoText[27] = 'Crinkle tissue silk lengha with top and matching dapatta. Heavy gold antique zardosi embroidery and French knot embroidery.';
	infoText[28] = 'Net bridal lengha and top with silk brocade lining and matching net dapatta, finished in gold zardosi and sequin embroidery.';

function changeText(dispNow)
//	Change text depending on which item mouse is hovering over

{
	document.all.descbox.innerText = infoText[dispNow];
}

function getImage(imageName)
//	Display large image in new window

{
	e=eval("document.imagePlace");
	e.src = eval(imageName+".src");
}

function zoomText(dispNow)
//	Change text depending on which item mouse is hovering over

{
	e=eval(dispNow);
  var whichText = dispNow.substring(5,2);
	document.all.descbox.innerText = infoText[whichText];
}

