﻿// Recipe popup functions
function openRecipe(recipeName) {
    recipePopup = window.open('recipes/' + recipeName + '.html','recipePopup','width=564,height=600,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=200,top=200');
	if (window.focus) {recipePopup.focus()}
}

function openFinalistRecipe(recipeName) {
    finalistRecipePopup = window.open('recipes/' + recipeName + '.aspx','finalistRecipePopup','width=554,height=568,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=200,top=200');
	if (window.focus) {finalistRecipePopup.focus()}
}

var currentTab = "ingredients";

function showTab(tab) {
	//hide all tabbed content
	document.getElementById("ingredients").style.display = "none";
	document.getElementById("directions").style.display = "none";
	document.getElementById("essay").style.display = "none";
	
	//show selected tab's nav
	document.getElementById("nav").style.backgroundImage = "url(images/nav_" + tab + ".gif)";

	//show selected tab's content
	document.getElementById(tab).style.display = "block";
	
	//set current tab for rollovers
	currentTab = tab;
}

function Glow(tab) {
	document.getElementById("nav").style.backgroundImage = "url(images/nav_" + tab + ".gif)";
}

function DeGlow(tab) {
	document.getElementById("nav").style.backgroundImage = "url(images/nav_" + currentTab + ".gif)";
}// JScript File



