var recipes = new Array();
var links = new Array();
var i = 0;
recipes[i] = "Baked Escargots with Butter Sauce";
links[i++] = "recipes_escargots.html";

recipes[i] = "Frozen Willi Lollis";
links[i++] = "recipes_frozenwillilollis.html";

recipes[i] = "Baby Clams & Moza Bruschetta";
links[i++] = "recipes_babyclams.html";

recipes[i] = "Fiesta Corn Bread";
links[i++] = "recipes_fiestacornbread.html";

recipes[i] = "--- Knorr's Recipes ---";
links[i++] = "";

recipes[i] = "Blue Cheese Dressing";
links[i++] = "recipes_knorr.php?img=recipes_bluecheesedressing";

recipes[i] = "Chianti, olive & basil marinage";
links[i++] = "recipes_knorr.php?img=recipes_chianti";

recipes[i] = "Chicken breast with basil lemon sauce";
links[i++] = "recipes_knorr.php?img=recipes_chickenbreast";

recipes[i] = "Chicken salad with mango - curry dressing";
links[i++] = "recipes_knorr.php?img=recipes_chickensaladmango";

recipes[i] = "Cold gherkin dish with shrimps";
links[i++] = "recipes_knorr.php?img=recipes_coldgherkin";

recipes[i] = "Cold yoghurt vegetables soup";
links[i++] = "recipes_knorr.php?img=recipes_coldyoghurt";

recipes[i] = "Courgettes and carrots a la Florentine";
links[i++] = "recipes_knorr.php?img=recipes_courgettes";

recipes[i] = "Crostini al Pesto";
links[i++] = "recipes_knorr.php?img=recipes_crostini";

recipes[i] = "Fillet of chicken-piccata in herb jacket";
links[i++] = "recipes_knorr.php?img=recipes_filletofchicken";

recipes[i] = "Fillet of trout on a bed of sauerkraut";
links[i++] = "recipes_knorr.php?img=recipes_filletoftrout";

recipes[i] = "Garlic bouquet de provence sauce";
links[i++] = "recipes_knorr.php?img=recipes_garlicbouquet";

recipes[i] = "Gorgonzola sauce";
links[i++] = "recipes_knorr.php?img=recipes_gorgonzola";

recipes[i] = "Greek farmer's salad";
links[i++] = "recipes_knorr.php?img=recipes_greekfarmer";

recipes[i] = "Herb butter";
links[i++] = "recipes_knorr.php?img=recipes_herbbutter";

recipes[i] = "John Dory in vegetable stock";
links[i++] = "recipes_knorr.php?img=recipes_johndory";

recipes[i] = "Lamb chop au gratin";
links[i++] = "recipes_knorr.php?img=recipes_lambchop";

recipes[i] = "Mediterranean marinade";
links[i++] = "recipes_knorr.php?img=recipes_mediterraneanmarina";

recipes[i] = "Old fashioned chicken";
links[i++] = "recipes_knorr.php?img=recipes_oldfashionedchick";

recipes[i] = "Olive oil & herb marinade";
links[i++] = "recipes_knorr.php?img=recipes_oliveoil";

recipes[i] = "Penne wth creamed spinach and tomato sauce";
links[i++] = "recipes_knorr.php?img=recipes_penne";

recipes[i] = "Potato salad with spring onions";
links[i++] = "recipes_knorr.php?img=recipes_potatosalad";

recipes[i] = "Spaghetti Sparviero";
links[i++] = "recipes_knorr.php?img=recipes_spaghettisparviero";

recipes[i] = "Stuffed mushrooms with mussels";
links[i++] = "recipes_knorr.php?img=recipes_stuffedmushrooms";

recipes[i] = "Tomato provenscale";
links[i++] = "recipes_knorr.php?img=recipes_tomatoprovenscale";

recipes[i] = "Veal cutlet Berlusconi";
links[i++] = "recipes_knorr.php?img=recipes_vealcutlet";

recipes[i] = "Vegetables with tuna sauce";
links[i++] = "recipes_knorr.php?img=recipes_vegetuna";

recipes[i] = "Vinaigrette";
links[i++] = "recipes_knorr.php?img=recipes_vinaigrette";

recipes[i] = "Vitello con salsa verde";
links[i++] = "recipes_knorr.php?img=recipes_vitellosalsa";

recipes[i] = "Vol-au-Vent with creamy apple sauce";
links[i++] = "recipes_knorr.php?img=recipes_volauvent";


var sPath = window.location.href;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

function addOption(selectbox,text,value)
{
	var optn = document.createElement("option");
	optn.text = text;
	optn.value = value;
	if(sPage == value)
	{
		optn.selected = true;
	}
	selectbox.options.add(optn);
}

function addRecipes()
{
	var selectbox = document.getElementById("recipeList");
	for(var i=0; i<recipes.length; i++)
	{
		if(recipes[i].length > 29){
			recipes[i] = recipes[i].substr(0,27) + "...";
		}
		addOption(selectbox,recipes[i],links[i]);
	}
}
