<!--

if (document.images) {       //if image object is available     
img1on = new Image();		// Selected Style Images
img1on.src = "images/cakesGraphics_flavor1on.gif";
img2on = new Image();
img2on.src = "images/cakesGraphics_flavor2on.gif";
img3on = new Image();
img3on.src = "images/cakesGraphics_flavor3on.gif";
img4on = new Image();
img4on.src = "images/cakesGraphics_flavor4on.gif";
img5on = new Image();
img5on.src = "images/cakesGraphics_flavor5on.gif";
img6on = new Image();
img6on.src = "images/cakesGraphics_flavor6on.gif";
img7on = new Image();
img7on.src = "images/cakesGraphics_flavor7on.gif";
img8on = new Image();
img8on.src = "images/cakesGraphics_flavor8on.gif";
img9on = new Image();
img9on.src = "images/cakesGraphics_flavor9on.gif";
img10on = new Image();
img10on.src = "images/cakesGraphics_flavor10on.gif";


img1off = new Image();		  	// Deselected Style Images
img1off.src = "images/cakesGraphics_flavor1.gif";
img2off = new Image();
img2off.src = "images/cakesGraphics_flavor2.gif";
img3off = new Image();
img3off.src = "images/cakesGraphics_flavor3.gif";
img4off = new Image();
img4off.src = "images/cakesGraphics_flavor4.gif";
img5off = new Image();
img5off.src = "images/cakesGraphics_flavor5.gif";
img6off = new Image();
img6off.src = "images/cakesGraphics_flavor6.gif";
img7off = new Image();
img7off.src = "images/cakesGraphics_flavor7.gif";
img8off = new Image();
img8off.src = "images/cakesGraphics_flavor8.gif";
img9off = new Image();
img9off.src = "images/cakesGraphics_flavor9.gif";
img10off = new Image();
img10off.src = "images/cakesGraphics_flavor10.gif";


img1hon = new Image();		// Description Images (holder)
img1hon.src = "images/cakesGraphics_text1.gif";
img2hon = new Image();
img2hon.src = "images/cakesGraphics_text2.gif";
img3hon = new Image();
img3hon.src = "images/cakesGraphics_text3.gif";
img4hon = new Image();
img4hon.src = "images/cakesGraphics_text4.gif";
img5hon = new Image();
img5hon.src = "images/cakesGraphics_text5.gif";
img6hon = new Image();
img6hon.src = "images/cakesGraphics_text6.gif";
img7hon = new Image();
img7hon.src = "images/cakesGraphics_text7.gif";
img8hon = new Image();
img8hon.src = "images/cakesGraphics_text8.gif";
img9hon = new Image();
img9hon.src = "images/cakesGraphics_text9.gif";
img10hon = new Image();
img10hon.src = "images/cakesGraphics_text10.gif";


imghoff = new Image();		  	// Description Off Image (holder)
imghoff.src = "images/cakesGraphics_text.gif";


}

function imgOn(imgName) {        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            document["holder"].src = eval(imgName + "hon.src");
        }}
			
function imgOff(imgName) {        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
            document["holder"].src = eval("imghoff.src");
		}}

//-->
