function randomRecipe(){
	// random recipe 1-10
	var rnd = Math.floor(Math.random()*10)+1;
	var url = '/rogers/recipe' + rnd + '.html';
	document.location = url;
}

