// array of category information
// row: name (unused) / title / description

var categoriesarray = new Array(
	new Array('handbags','<strong>Mushu - Itsy Bitsy Bags</strong>','<p>Please select a Bag design from the styles below and select a colour swatch on the right.</p><p>Place an order by clicking the cart icon and filling the order form details.</p>'),
	new Array('accessories','<strong>Mushu - Itsy Bitsy Accessories</strong>','<p>Please select a design from the styles below and select a colour swatch on the right.</p><p>Place an order by clicking the cart icon and filling the order form details.</p>')
);





// array of item information - one set for each category, in same order as categoriesarray
// row: name (unused) / title / description / filename fragment (used for mono and fullsize) / mono filetype / product filetype /popup filetype / swatch array reference number (ad infinitum, probably limit of 7 due to design)

itemsarray=new Array(
	new Array(
		new Array('handbags', 'Christelle', '<p>A great Medium size leather bag which can fit all your daily needs. Unzip the two zip panels and peeping through is striking colourful Mushu printed fabrics.</p><p>$169 H30cm x  W33cm x D14cm</p>','handbag-christelle','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('handbags', 'Kate', '<p>A medium shoulder bag with a brass metal buckle detailing.</p><p>$119 H22cm x  W32cm x D9cm</p>','handbag-kate','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('handbags', 'Leyla', '<p>A cute sling bag which can be worn day or night.<br />Just sling the Leyla over your body and off you go.</p><p>$99 H24cm x  W28cm x D12cm</p>','handbag-leyla','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('handbags', 'Tamsen', '<p>Medium size leather bag with printed fabric lining.<br />	The pleated detailing in the front of the bag makes it a little more special.</p><p>$149 H37cm x  W34cm x D9.5cm</p>','handbag-tamsen','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('handbags', 'Tess', '<p>A large shoulder bag that stands out from the crowd. Great as a work or beach bag as it carries everything<br />you can possibly need.</p><p>$129 H37cm x  W34cm x D10cm</p>','handbag-tess','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('handbags', 'Zoe', '<p>A stylish Medium size handbag.<br />The leather panels make it stand out.</p><p>$95 H29cm x  W39cm x D9cm</p>','handbag-zoe','.png','.jpg','.png','0','1','2','3','4','5')
	),
	new Array(
		new Array('accessories', 'Wallet-Small Clutch Purse', '<p>Stylish slim line clutch purse</p><p>$27 H9.5cm x W18.5cm x D2.5cm</p>','accessory-clutch-purse','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('accessories', 'Coin Purse', '<p>Great little purse to hold your loose change!</p><p>$15 H10cm x W14cm</p>','accessory-coin-purse','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('accessories', 'Large Make-up Purse', '<p>A make-up bag large enough to fit everything - and looks terrific!</p><p>$29 H13cm x W19cm x D8.5cm</p>','accessory-large-make-up','.png','.jpg','.png','0','1','2','3','4','5'),
		new Array('accessories', 'Make-up Purse', '<p>Smaller style make-up bag - great for when your out on the town!</p><p>$17 H11.5cm x W16.5cm x D4cm</p>','accessory-make-up-purse','.png','.jpg','.png','0','1','2','3','4','5')
	)
);





// array of swatch information
// row: name (unused) / title / filename fragment (used for thumb and fullsize) / thumbnail filetype

swatcharray=new Array(
	new Array('swatch', 'Black White Bees', 'black-white-bees', '.png'),
	new Array('swatch', 'Brown Orange Bees', 'brown-orange-bees', '.png'),
	new Array('swatch', 'Purple Navy Beetles', 'purple-navy-beetles', '.png'),
	new Array('swatch', 'Red Ants', 'red-ants', '.png'),
	new Array('swatch', 'Salmon Brown Beetles', 'salmon-brown-beetles', '.png'),
	new Array('swatch', 'Turquoise Ants', 'turquoise-ants', '.png')
);