
// this code opens new windows - verify the width and heights work for this particular website
	function open_new_window(url, window_name)
	{
		window.open(url,window_name,'width=600,height=500,toolbar=1,scrollbars=1,directories=1,location=1,status=1,menubar=1,resizable=1');
	}
// end of code opening new windows
// this code controls the dhtml code activated by onclick of the links
	var contentObj;
	var page_loaded = "false";
	function init()
	{
		contentObj = addLayer('content');
		setLayerSize(contentObj,600,280);
		setLayerClip(contentObj,0,600,260,0);
		moveLayerTo(contentObj,160,220);
		showLayer(contentObj);
		setLayerHTML(contentObj,sBeginning_code);
		page_loaded = true;
		preloadImages();
	}		
	window.onload = init;
	function load_1(code_def)
	{
		if(page_loaded == true)
		{
			setLayerHTML(contentObj,code_def);

		}
	}

// code to write the beginning table tags for the opening display in each section - to cut down on load time

	var setup_code = "";
	setup_code =  "<table width='600' border='0' cellpadding='0' cellspacing='0'>\n";
	setup_code += "<tr>\n";
	setup_code += "<td width='600' align='left'>"; 	
//code to set the dynamic html display for the opening homepage content

	var sBeginning_code = "";
	var sSec_0_code = "";
	sSec_0_code =  setup_code;
	sSec_0_code += "<h1>Specialty Items</h1><p>All our items are special at Gencarelli’s … but some of them just don’t fit easily into one category or the other … hence the phrase “Specialty Item”.  One thing's for sure though – no matter <i>what</i> item you bring home from Gencarelli's, you’ll be bringing home Quality ... because that’s our real name!\n";
	sSec_0_code += "</td></tr></table>";
	sBeginning_code = sSec_0_code;

	var spec1 = "";
	var sSec_1_code = "";
	sSec_1_code =  setup_code + "<p><img src='images/specialty1.jpg' align='right' hspace='8' vspace='5'><h1>Tiramisu</h1>\n";
	sSec_1_code += "<p>This is another of the traditional Italian desserts you’ll find here … but made the Gencarelli way, of course!  Our \“pick me up\” dessert \(to use the literal translation of \“tirama su\”\) is made with the freshest mascarpone crème … and we soak our sponge cake in the richest-flavored espresso!  \“Assolutamente delizioso!\”</p>\n";
	sSec_1_code += "";
	sSec_1_code += "";
	sSec_1_code += "</td></tr></table>";
	spec1 = sSec_1_code;
	
	var spec2 = "";
	var sSec_2_code = "";
	sSec_2_code =  setup_code + "<p><img src='images/specialty2.jpg' align='right' hspace='8' vspace='5'><h1>Charlotte Cecilia </h1>\n";
	sSec_2_code += "<p>This is one of our “centerpiece desserts” here at Gencarelli's ... pleasing to the eye as well as the taste buds!  Rich in flavor, this chocolate/vanilla mousse, show up at your next party with this treat for your host … you’ll be invited back again and again and again!\n";
	sSec_2_code += "";
	sSec_2_code += "";
	sSec_2_code += "</td></tr></table>";
	spec2 = sSec_2_code;

	var spec3 = "";
	var sSec_3_code = "";
	sSec_3_code =  setup_code + "<p><img src='images/specialty3.jpg' align='right' hspace='8' vspace='5'><h1>California Fruit Flan </h1>\n";
	sSec_3_code += "<p>At Gencarelli’s, we use only the freshest ingredients in all our products … and this is especially true of our California Fruit Flan.  This item is a spring/summer classic here.  Stop by and pick one up for your next outdoor party and watch your guests' eyes light up!\n";
	sSec_3_code += "</td></tr></table>";
	spec3 = sSec_3_code;

	var spec4 = "";
	var sSec_4_code = "";
	sSec_4_code =  setup_code + "<p><img src='images/specialty4.jpg' align='right' hspace='8' vspace='5'><h1>Gianduia </h1>\n";
	sSec_4_code += "<p>Like our mousse, this Gianduia cake has a wonderful praline texture and taste to it, combined with a delicious chocolate icing.  This cake is perfect for any affair, whether its family or friends.  If you have any questions about what to serve for your next party, give us a call – we’d be more than happy to make a few suggestions.\n";
	sSec_4_code += "</td></tr></table>";
	spec4 = sSec_4_code;

	var spec5 = "";
	var sSec_5_code = "";
	sSec_5_code =  setup_code + "<p><img src='images/specialty5.jpg' align='right' hspace='8' vspace='5'><h1>Chocolate Mousse  </h1>\n";
	sSec_5_code += "<p>There’s chocolate mousse cakes … and then there’s a Gencarelli Chocolate Mousse Cake.  No, this isn’t the everyday chocolate layer cake you’ll find at your corner grocery store! We take this delicious cake to the next level, as we do with all our desserts!  One step above – that’s what we strive to be here at Gencarelli’s Bakery!\n";
	sSec_5_code += "";
	sSec_5_code += "";
	sSec_5_code += "</td></tr></table>";
	spec5 = sSec_5_code;
	