//	Designer Cake Co. Gallery Image Data file
//
//	(c)	Andy Belcher & DCC 2005
//
//	!! EDIT THIS FILE WITH _!_extreme_!_ CARE !!
//
//	Make sure that you have at least a basic understanding of JavaScript,
//	especially how to manipulate strings before attempting to edit this file.
//	Make sure you know that '+' is a concatenation operator,
//	and why \" differs from " and what // means!
//
//	EXAMPLE...
//
//	Each entry has a reference number 'n' which is incremented each time.
//	Copypaste the last entry in this list and increment its number by 1
//	Thus...
//
//	iU	imgURL[n+1]			= the image file name. No path, do no include '.small'
//	iO	imgORIENTATION[n+1]	= L(andscape) or P(ortrait) default is L
//	iB	imgBLURB[n+1]		= Any explanatory text and image details. SYNTAX!!
//	iC	imgCOPYRIGHT[n=1]	= The copyright holder for the image, default is WCMS
//	iL	imgLOCATION[n+1]	= The location of the cave/mine
//	iD	imgDATE[n+1]		= The date. dd-mon-yyyy
//	iA	imgALTtext[n+1]		= A BRIEF image description. (Visible to the public!)
//	iR	imgREFERENCE		= archive argument to see associated articles
//
//	imgURL is the only piece of data ABSOLUTELY REQUIRED.
//
//	The OWNER defaults to 'WCMS' and the ORIENTATION defaults to 'L'
//	Any other piece of data which has no value can be omitted as it will be
//	set blank by default. There is no need to clutter the file!
//
//	...and there you have it. DON'T FORGET TO TEST IT!!!
//
//	Set arrays...
//
var iU	= new Array();
var iO	= new Array();
var iA	= new Array();
var iC	= new Array();
var iT	= new Array();
var iP	= new Array();
//
//	Set constants...
//
var imgSmallSuf	= ".small";
var imgWidth	= 160;
var imgHeight	= 120;
var imgGalWidth	= 640;
var imgGalHgt	= 480;
var lastNo		= 0;
var nImg		= 0;
var imgDir		= "/img";
//
//	The above constants dictate that the images are in the /img directory.
//	The main image will called /img/myimage.jpg and will be 640x480,
//	There will also be another copy of the image '/img/myimage.small.jpg'
//	which will be 160x120 (or the other way round if portrait)
//
//	Pre-load default values...
//
//	Many of the values in these arrays will be null. Rather than generate a
//	massive file with lots of:   var xyz[n] = "";	lines we can preload
//	each one with a basic default value and only set an explicit value
//	further down if there is data available.
//
for(i=0;i<=70;i++)	{ //set defaults
	iT[i]="";
	iP[i]="For this design please <a href=\"/contact.shtml\" target=\"_blank\">contact us</a>...";
	iO[i]="L";
	iC[i]="Designer Cake Company";
	iA[i]="";
	}
//
//	Start image data...
//
iU[0]	= "poppy_cake.jpg";
iO[0]	= "P";
iT[0]	= "TF";
iA[0]	= "Poppy Cake - We can add drawing and images to the icing, all beautifully painted by hand...";
iP[0]	= "&pound;80";
//
iU[1]	= "floral_2tier.jpg";
iO[1]	= "P";
iT[1]	= "WF";
iA[1]	= "Gerbera Wedding Cake: Real flowers can also be worked into designs...";
iP[1]	= "from &pound;350";
//
iU[2]	= "ruby_wedding.jpg";
iO[2]	= "P";
iT[2]	= "AW";
iA[2]	= "We also produce more traditional cake designs such as this ruby wedding cake...";
iP[2]	= "from &pound;200";
//
iU[3]	= "ballerinafeathers.jpg";
iO[3]	= "P";
iT[3]	= "C";
iA[3]	= "Our luxury cakes come with beautifully hand-crafted decorations and figures such as this ballerina...";
iP[3]	= "&pound;80";
//
iU[4]	= "ballerinafeathers_hi.jpg";
iT[4]	= "CD";
iA[4]	= iA[3];
iP[4]	= iP[3];
//
iU[5]	= "pirate_cake.jpg";
iT[5]	= "BC";
iA[5]	= "We can craft any type of decoration to a particular theme such as this 'Pirate Cake'...";
iP[5]	= "&pound;80";
//
iU[6]	= "choc_red_roses.jpg";
iO[6]	= "P";
iT[6]	= "TF";
iA[6]	= "We can craft the cake to any design that you can think of and can use any ingredient or decoration, whatever you want...";
iP[6]	= "from &pound;350";
//
iU[7]	= "dave70golfbag.jpg";
iO[7]	= "P";
iT[7]	= "BT";
iA[7]	= "Why not choose a sporting theme?";
iP[7]	= "&pound;35";
//
iU[8]	= "figures40.jpg";
iT[8]	= "BT";
iA[8]	= "Hand crafted family figures adorn this cake, almost any figures can be made to suit your chosen theme...";
iP[8]	= "&pound;60";
//
iU[9]	= "greg_rugby.jpg";
iO[9]	= "P";
iT[9]	= "BT";
iA[9]	= iA[7];
iP[9]	= "&pound;40";
//
iU[10]	= "isabella7fairycastle.jpg";
iO[10]	= "P";
iT[10]	= "BTC";
iA[10]	= "There is no limit for these luxury birthday cakes, any ideas, any themes, here we have a princess fairy castle...";
iP[10]	= "&pound;80";
//
iU[11]	= "isabella7fairycastle_hi.jpg";
iT[11]	= "BTCD";
iA[11]	= iA[10];
iP[11]	= iP[10];
//
iU[12]	= "moet30overhill.jpg";
iO[12]	= "P";
iT[12]	= "BT";
iA[12]	= "A picture paints a thousand words; any theme or message can be added to your cake...";
iP[12]	= "&pound;80";
//
iU[13]	= "moet30overhill_hi.jpg";
iT[13]	= "BTD";
iA[13]	= iA[12];
iP[13]	= iP[12];
//
iU[14]	= "vickys_handbag.jpg";
iO[14]	= "P";
iT[14]	= "BT";
iA[14]	= "Luxury cakes can be made to ressemble many different objects, almost anything you can think of...";
iP[14]	= "&pound;50";
//
iU[15]	= "chocshards21.jpg";
iO[15]	= "P";
iT[15]	= "BTW";
iA[15]	= "Some cake designs can be quite abstract, anything is possible, you choose a theme, or give us a sketch and we will create it for you...";
iP[15]	= "&pound;200";
//
iU[16]	= "chocshards.jpg";
iO[16]	= "P";
iT[16]	= iT[15];
iA[16]	= iA[15];
iP[16]	= iP[15];
//
iU[17]	= "me_to_you.jpg";
iT[17]	= "B";
iA[17]	= "All designs catered for from the fanciest to the simplest...";
iP[17]	= "&pound;50";
//
iU[18]	= "orchid.jpg";
iT[18]	= "WF";
iA[18]	= "Real flowers can add an exquisite touch to your dream wedding cake...";
iP[18]	= "from &pound;350";
//
iU[19]	= "orchid_3tier.jpg";
iO[19]	= "P";
iT[19]	= "WF";
iA[19]	= iA[18];
iP[19]	= iP[18];
//
iU[20]	= "redrose_3tier.jpg";
iO[20]	= "P";
iT[20]	= "WF";
iA[20]	= "White cigarellos with red roses: Any theme can be made a reality, flowers can be worked in as well...";
iP[20]	= "from &pound;370";
//
iU[21]	= "sugar_flower_tiers.jpg";
iO[21]	= "P";
iT[21]	= "TW";
iA[21]	= "Hand-crafted white chocolate roses adorn this cake...";
iP[21]	= "from &pound;400";
//
iU[22]	= "sugar_flowers.jpg";
iO[22]	= "P";
iT[22]	= "WT";
iA[22]	= iA[21];
iP[22]	= iP[21];
//
iU[23]	= "terareum.jpg";
iO[23]	= "P";
iT[23]	= "TWF";
iA[23]	= "White cigarellos with orchids: Plants and flowers can add that special touch to any cake...";
iP[23]	= "from &pound;370";
//
iU[24]	= "wedding_hearts.jpg";
iO[24]	= "P";
iT[24]	= "WF";
iA[24]	= "Two tier heart: More traditional designs are elegantly accomplished...";
iP[24]	= "&pound;250";
//
iU[25]	= "wedding_yellow.jpg";
iO[25]	= "P";
iT[25]	= "WF";
iA[25]	= "Three tier cake: A rather more traditional wedding cake with matching floral decorations...";
iP[25]	= "from &pound;300";
//
iU[26]	= "olympia01.jpg";
iO[26]	= "P";
iT[26]	= "OT";
iA[26]	= "'Butterfly' - 7 tiers of chocolate cake covered in white maltesers and tinted...";
iP[26]	= "from &pound;400";
//
iU[27]	= "olympia02.jpg";
iO[27]	= "P";
iT[27]	= iT[26]+"D";
iA[27]	= iA[26]+" A close up view of the butterfly decorations...";
iP[27]	= iP[26];
//
iU[28]	= "olympia03.jpg";
iO[28]	= "P";
iT[28]	= "OW";
iA[28]	= "'Congratulations' - Parcel cake with figures. Tiers of parcels finished with bride and groom...";
iP[28]	= "from &pound;400";
//
iU[29]	= "olympia03_couple.jpg";
iT[29]	= iT[28]+"D";
iA[29]	= iA[28]+" A close up view of the wedding cake figures - all hand made...";
iP[29]	= iP[28];
//
iU[30]	= "olympia04.jpg";
iO[30]	= "P";
iT[30]	= "OWT";
iA[30]	= "'Modern Jewel' - 3 tier square cake decorated with matching wired jewels...";
iP[30]	= "from &pound;300";
//
iU[31]	= "olympia04_decorations.jpg";
iT[31]	= iT[30]+"D";
iA[31]	= iA[30]+" A close up of the hand-made decorations...";
iP[31]	= iP[30];
//
iU[32]	= "olympia05.jpg";
iO[32]	= "P";
iT[32]	= "OWBC";
iA[32]	= "'Fantasy Feathers' - 6 inch top cake decorated with sugar flowers, diamonte and feathers with individual fairy cakes decorated to match...";
iP[32]	= "&pound;2 per cake plus &pound;50 for top cake";
//
iU[33]	= "olympia05_cupcake.jpg";
iT[33]	= iT[32]+"D";
iA[33]	= iA[32]+" Close up of fairy cakes within the larger feature...";
iP[33]	= iP[32];
//
iU[34]	= "olympia06.jpg";
iO[34]	= "P";
iT[34]	= iT[32];
iA[34]	= iA[32];
iP[34]	= iP[32];
//
iU[35]	= "olympia07.jpg";
iO[35]	= "P";
iT[35]	= "OWF";
iA[35]	= "'Summer Blush' - Pink silk roses between tiers. Delicately piped with silk flowers between tiers...";
iP[35]	= "from &pound;275";
//
iU[36]	= "olympia09.jpg";
iO[36]	= "P";
iT[36]	= "OWF";
iA[36]	= "'Rose Dream' - 3 columns of cake decorated with silk roses...";
iP[36]	= "from &pound;420";
//
iU[37]	= "olympia10.jpg";
iO[37]	= "P";
iT[37]	= "OWCTB";
iA[37]	= "'Castle of Wishes' - Stacked cake with beautiful castle on top and jewel effect piping...";
iP[37]	= "from &pound;300";
//
iU[38]	= "olympia13.jpg";
iO[38]	= "P";
iT[38]	= "OTCW";
iA[38]	= "'Sweetpea Fairies' - Oval cake decorated with handmade sugar flowers and delicate hand painted fairies...";
iP[38]	= "from &pound;290";
//
iU[39]	= "olympia12_fairies.jpg";
iT[39]	= iT[38]+"D";
iA[39]	= iA[38]+" A close up view of these exquisite fairies, part of the hand-made decorations on this beautiful cake...";
iP[39]	= iP[38];
//
iU[40]	= "olympia13_fairies.jpg";
iO[40]	= "P";
iT[40]	= iT[38];
iA[40]	= iA[38];
iP[40]	= iP[38];
//
iU[41]	= "01_ivoryredrosespipedlines1.jpg";
iO[41]	= "P";
iT[41]	= "WF";
iA[41]	= "Ivory and red roses with piped lines...";
iP[41]	= "from &pound;350";
//
iU[42]	= "01_ivoryredrosespipedlines3.jpg";
iO[42]	= "P";
iT[42]	= iT[41]+"D";
iA[42]	= iA[41];
iP[42]	= iP[41];
//
iU[43]	= "02_rupert_bear.jpg";
iT[43]	= "CBT";
iA[43]	= "Rupert Bear fishing, a nicely themed cake suitable for many ocassions...";
iP[43]	= "&pound;50";
//
iU[44]	= "02_rupert_bear2_close.jpg";
iO[44]	= "P";
iT[44]	= iT[43]+"D";
iA[44]	= iA[43]+" (A close up view of this hand-made character...)";
iP[44]	= iP[43];
//
iU[45]	= "03_bondjamesbond.jpg";
iT[45]	= "CBT";
iA[45]	= "Bond, James Bond: Figures and decorations can be made to any theme...";
iP[45]	= "&pound;50";
//
iU[46]	= "04_pinkwhitechow18_1.jpg";
iO[46]	= "P";
iT[46]	= "BTC";
iA[46]	= "Pink and white chocolate 18th birthday cake...";
iP[46]	= "&pound;120";
//
iU[47]	= "05_4tierbeading1.jpg";
iO[47]	= "P";
iT[47]	= "W";
iA[47]	= "Four-tiered cake with beading decoration...";
iP[47]	= "from &pound;400";
//
iU[48]	= "05_4tierbeading4.jpg";
iO[48]	= "P";
iT[48]	= iT[47]
iA[48]	= iA[47];
iP[48]	= iP[47];
//
iU[49]	= "06_girlsonsuitcase.jpg";
iT[49]	= "TB";
iA[49]	= "'Two girls on a suitcase': Figures and decorations can be made to any theme...";
iP[49]	= "&pound;70";
//
iU[50]	= "06_girlsonsuitcase_close1.jpg";
iO[50]	= "P";
iT[50]	= iT[49]+"D";
iA[50]	= iA[49]+" (A close up view of these hand-made characters...)";
iP[50]	= iP[49];
//
iU[51]	= "06_girlsonsuitcase_close2.jpg";
iO[51]	= "P";
iT[51]	= iT[50];
iA[51]	= iA[50];
iP[51]	= iP[50];
//
iU[52]	= "07_2tierpinkroses.jpg";
iO[52]	= "P";
iT[52]	= "FW";
iA[52]	= "Two-tiered with pink roses: Fresh flowers can add to any design...";
iP[52]	= "&pound;250";
//
iU[53]	= "08_cinderella_carriage.jpg";
iT[53]	= "CBT";
iA[53]	= "Cinderella's Carriage: Figures and decorations can be made to any theme...";
iP[53]	= "&pound;110";
//
iU[54]	= "08_cinderella_carriage_close.jpg";
iT[54]	= iT[53]+"D";
iA[54]	= iA[53]+" (A close up view of these hand-made characters...)";
iP[54]	= iP[53];
//
iU[55]	= "08_cinderella_carriage_close2.jpg";
iT[55]	= iT[54];
iA[55]	= iA[54];
iP[55]	= iP[54];
//
iU[56]	= "09_largefisherman.jpg";
iO[56]	= "P";
iT[56]	= "BT";
iA[56]	= "'Large Fisherman': Figures and decorations can be made to any theme...";
iP[56]	= "&pound;60";
//
iU[57]	= "10_4tiersugararumlily1.jpg";
iO[57]	= "P";
iT[57]	= "WF";
iA[57]	= "Four-tiered with sugar Arum Lillies...";
iP[57]	= "from &pound;400";
//
iU[58]	= "11_litupcastle1.jpg";
iO[58]	= "P";
iT[58]	= "CBT";
iA[58]	= "Lit up 'Fairy Castle': Effects can also be added to cakes, this castle lights up...";
iP[58]	= "from &pound;250";
//
iU[59]	= "11_litupcastle2.jpg";
iO[59]	= "P";
iT[59]	= iT[58];
iA[59]	= iA[58];
iP[59]	= iP[58];
//
iU[60]	= "12_mickeymouse.jpg";
iO[60]	= "P";
iT[60]	= "CB";
iA[60]	= "Mickey Mouse: What young child would not be thrilled by this?";
iP[60]	= "&pound;50";
//
iU[61]	= "13_noddy1.jpg";
iT[61]	= "CB";
iA[61]	= "Noddy: Beautifully recreated here. Figures and decorations can be made to any theme...";
iP[61]	= "from &pound;80";
//
iU[62]	= "13_noddy1_close.jpg";
iT[62]	= iT[61]+"D";
iA[62]	= iA[61]+" (A close up view of this lovely hand-made character...)";
iP[62]	= iP[61];
//
iU[63]	= "14_smallgolfer.jpg";
iO[63]	= "P";
iT[63]	= "BT";
iA[63]	= "'Small Golfer': Figures and decorations can be made to any theme...";
iP[63]	= "from &pound;40";
//
iU[64]	= "14_smallgolfer_close.jpg";
iT[64]	= iT[63]+"D";
iA[64]	= iA[63]+" (A close up view of this hand-made character...)";
iP[64]	= iP[63];
//
iU[65]	= "15_80.jpg";
iT[65]	= "BT";
iA[65]	= "'80': Traditional yet flamboyant...";
iP[65]	= "&pound;50";
//
iU[66]	= "16_2tierchocrose.jpg";
iO[66]	= "P";
iT[66]	= "WTF";
iA[66]	= "Two-tiered chocolate roses: Carefully crafted hand made decrations...";
iP[66]	= "from &pound;120";
//
iU[67]	= "16_2tierchocrose_close.jpg";
iT[67]	= iT[66]+"D";
iA[67]	= iA[66]+" (A close up view of these carefully hand-made flowers...)";
iP[67]	= iP[66];
//
iU[68]	= "18_patchworkchristening.jpg";
iT[68]	= "BCT";
iA[68]	= "'Patchwork Christening': Figures and decorations can be made to any theme...";
iP[68]	= "&pound;70";
//
iU[69]	= "18_patchworkchristening_close.jpg";
iT[69]	= iT[68]+"D";
iA[69]	= iA[68]+" (A close up view of these beautifully hand-made figures...)";
iP[69]	= iP[68];
//
iU[70]	= "18_patchworkchristening_close2.jpg";
iT[70]	= iT[69];
iA[70]	= iA[69];
iP[70]	= iP[69];
//
iU[71]	= "19_fallengolfer1.jpg";
iO[71]	= "P";
iT[71]	= "BT";
iA[71]	= "'The Fallen Golfer': Figures and decorations can be made to any theme...";
iP[71]	= "&pound;70";
//
iU[72]	= "19_fallengolfer2_close.jpg";
iT[72]	= iT[71]+"D";
iA[72]	= iA[71]+" (A close up view of this beautifully hand-made figure...)";
iP[72]	= iP[71];
//
iU[73]	= "20_fallenskier2.jpg";
iT[73]	= "BT";
iA[73]	= "'The Fallen Skier': Figures and decorations can be made to any theme...";
iP[73]	= "&pound;70";
//
iU[74]	= "20_fallenskier1_close.jpg";
iO[74]	= "P";
iT[74]	= iT[73]+"D";
iA[74]	= iA[73]+" (A close up view of this beautifully hand-made figure...)";
iP[74]	= iP[73];
//
iU[75]	= "21_gwen2.jpg";
iT[75]	= "BTF";
iA[75]	= "Simpler cakes can have flowers added...";
iP[75]	= "&pound;50";
//
iU[76]	= "22_poledancers1.jpg";
iO[76]	= "P";
iT[76]	= "TB";
iA[76]	= "'Pole-Dancers': Figures and decorations can be made to any theme...";
iP[76]	= "&pound;100";
//
iU[77]	= "22_poledancers3_close.jpg";
iT[77]	= iT[76]+"D";
iA[77]	= iA[76]+" (A close up view of these lovely hand-made ladies...)";
iP[77]	= iP[76];
//
iU[78]	= "22_poledancers2_close.jpg";
iO[78]	= "P";
iT[78]	= iT[77];
iA[78]	= iA[77];
iP[78]	= iP[77];
//
iU[79]	= "24_smallfisherman.jpg";
iT[79]	= "BT";
iA[79]	= "'Small Fisherman': Figures and decorations can be made to any theme...";
iP[79]	= "&pound;50";
//
iU[80]	= "24_smallfisherman_close.jpg";
iO[80]	= "P";
iT[80]	= iT[79]+"D";
iA[80]	= iA[79]+" (A close up view of this beautifully hand-made figure...)";
iP[80]	= iP[79];
//
iU[81]	= "26_malteser2.jpg";
iO[81]	= "P";
iT[81]	= "W";
iA[81]	= "Iced maltesers and decorative butterflies adorn this cake...";
iP[81]	= "from &pound;400";
//
iU[82]	= "26_malteser2_close.jpg";
iO[82]	= "P";
iT[82]	= iT[81]+"D";
iA[82]	= iA[81]+" (A close up view of this very pretty and detailed design...)";
iP[82]	= iP[81];
//
iU[83]	= "27_3tierfreshflowers2.jpg";
iO[83]	= "P";
iT[83]	= "WF";
iA[83]	= "Fresh pink and white roses adorn this traditionally iced wedding cake...";
iP[83]	= "from &pound;300";
//
iU[84]	= "28_whitechocfruit2.jpg";
iO[84]	= "P";
iT[84]	= "W";
iA[84]	= "White chocolate with fresh fruit...";
iP[84]	= "&pound;300";
//
iU[85]	= "28_whitechocfruit1_close.jpg";
iT[85]	= iT[84]+"D";
iA[85]	= iA[84]+" (A close up view of this very pretty and detailed design...)";
iP[85]	= iP[84];
//
iU[86]	= "30_lasvegas2.jpg";
iO[86]	= "P";
iT[86]	= "WT";
iA[86]	= "'Las Vegas Wedding': Figures and decorations can be hand-made to any theme...";
iP[86]	= "from &pound;250";
//
iU[87]	= "30_lasvegas3_close.jpg";
iT[87]	= iT[86]+"D";
iA[87]	= iA[86]+" (A close up view of these beautiful hand-made figures...)";
iP[87]	= iP[86];
//
iU[88]	= "30_lasvegas2_close.jpg";
iO[88]	= "P";
iT[88]	= iT[87];
iA[88]	= iA[87];
iP[88]	= iP[87];
//
iU[89]	= "31_whitechocpinkrose1.jpg";
iO[89]	= "P";
iT[89]	= "WF";
iA[89]	= "White chocolate with hand-made pink roses...";
iP[89]	= "from &pound;350";
//
iU[90]	= "31_whitechocpinkrose3_close.jpg";
iO[90]	= "P";
iT[90]	= iT[89]+"D";
iA[90]	= iA[89]+" (A close up view of these beautiful hand-made flowers...)";
iP[90]	= iP[89];
//
iU[91]	= "33_pinkwhitecastle1.jpg";
iO[91]	= "P";
iT[91]	= "BCT";
iA[91]	= "...";
iP[91]	= "from &pound;450";
//
iU[92]	= "33_pinkwhitecastle3_close.jpg";
iT[92]	= iT[91]+"D";
iA[92]	= iA[91]+" (A close up view of these beautiful hand-made figures...)";
iP[92]	= iP[91];
//
iU[93]	= "34_pinkbeadbutterflies2.jpg";
iO[93]	= "P";
iT[93]	= "WT";
iA[93]	= "Pink beading and butterflies...";
iP[93]	= "from &pound;300";
//
iU[94]	= "34_pinkbeadbutterflies2_close.jpg";
iT[94]	= iT[93]+"D";
iA[94]	= iA[93]+" (A close up view of these detailed decorations...)";
iP[94]	= iP[93];
//
iU[95]	= "36_bwarumlilies3.jpg";
iO[95]	= "P";
iT[95]	= "WF";
iA[95]	= "A stunning three-tiered cake with black and white icing and sugar Arum Lilies...";
iP[95]	= "from &pound;350";
//
iU[96]	= "36_bwarumlilies2_close.jpg";
iT[96]	= iT[95]+"D";
iA[96]	= iT[95]+" (A close up view of these detailed decorations...)";
iP[96]	= iT[95];
//
//	DO NOT EDIT BELOW THIS LINE !!
//	The following line MUST be at the bottom, BELOW any of the data lines.
//
nImg	= iU.length;
//
//	TEST CATEGORY CODES
//	
//	B - Birthday
//	C - Child
//	F - Floral
//	T - Themed
//	W - Wedding
//	O - Olympia exhibition
//	D - Detailed close-ups
//
var galTit	= new Array();
var galInfo	= new Array();
//
galTit[0]	= "All Cakes";
galInfo[0]	= "This shows all of the cake pictures in our gallery at present...";
//
galTit[1]	= "Birthday";
galInfo[1]	= "Birthday cakes to suit all age ranges...";
//
galTit[2]	= "Childrens";
galInfo[2]	= "Childrens cakes carefully crafted to appeal to all...";
//
galTit[3]	= "Floral";
galInfo[3]	= "Real flowers add a stunning touch to any cake...";
//
galTit[4]	= "Themed";
galInfo[4]	= "Any idea or theme can be incorporated into the design...";
//
galTit[5]	= "Wedding";
galInfo[5]	= "Wedding cakes, traditional or more adventurous...";
//
galTit[6]	= "Exhibition";
galInfo[6]	= "Exhibited at the National Wedding Show at the London Olympia...";
//
galTit[6]	= "Details";
galInfo[6]	= "Close-up views showing fine details, decorations and figures...";
//
nGal = galTit.length;
//
function loadGallery(galNo) {
	var s="";var j="";
	switch(galNo)
	{case 1:
 		//	BIRTHDAY CAKES
		for(i=0;i<nImg;i++)
			{if(iT[i].indexOf("B") != -1) {s = s+j+i;j = ",";}}
		return s;
		break;
	case 2:
 		//	CHILDRENS CAKES
		for(i=0;i<nImg;i++)
			{if(iT[i].indexOf("C") != -1) {s = s+j+i;j = ",";}}
		return s;
		break;
	case 3:
 		//	FLORAL CAKES
		for(i=0;i<nImg;i++)
			{if(iT[i].indexOf("F") != -1) {s = s+j+i;j = ",";}}
		return s;
		break;
	case 4:
 		//	THEMED CAKES
		for(i=0;i<nImg;i++)
			{if(iT[i].indexOf("T") != -1) {s = s+j+i;j = ",";}}
		return s;
		break;
	case 5:
 		//	WEDDING CAKES
		for(i=0;i<nImg;i++)
			{if(iT[i].indexOf("W") != -1) {s = s+j+i;j = ",";}}
		return s;
		break;
//	case 6:
// 		//	EXHIBITION CAKES
//		for(i=0;i<nImg;i++)
//			{if(iT[i].indexOf("O") != -1) {s = s+j+i;j = ",";}}
//		return s;
//		break;
	case 6:
 		//	DETAIL VIEWS
		for(i=0;i<nImg;i++)
			{if(iT[i].indexOf("D") != -1) {s = s+j+i;j = ",";}}
		return s;
		break;
	default:
		//	DEFAULT - RETURN ALL IMAGES
		for(var i=0;i<nImg;i++) {s = s+j+i;j = ",";}
		return s;
		}
	return "";
	}
//
//	EOF
//


