function menu_name_show(name, color) { 
	menu_name_id = document.getElementById("menu_name");
	menu_name_id.style.color = color;
	menu_name_id.childNodes[0].nodeValue = name;
	
	if(name == "home") { menu_name_id.style.right = "155px"; }
	if(name == "about") { menu_name_id.style.right = "128px"; }
	if(name == "clients") { menu_name_id.style.right = "97px"; }
	if(name == "portfolio") { menu_name_id.style.right = "65px"; }
	if(name == "links") { menu_name_id.style.right = "46px"; }
	if(name == "contact") { menu_name_id.style.right = "13px"; }
	
	menu_name_id.style.display = "block";
}

function menu_name_show_default(name, color) { 
	menu_name_id = document.getElementById("menu_name_default");
	menu_name_id.style.color = color;
	menu_name_id.childNodes[0].nodeValue = name;
	
	if(name == "home") { menu_name_id.style.right = "155px"; }
	if(name == "about") { menu_name_id.style.right = "128px"; }
	if(name == "clients") { menu_name_id.style.right = "97px"; }
	if(name == "portfolio") { menu_name_id.style.right = "65px"; }
	if(name == "links") { menu_name_id.style.right = "46px"; }
	if(name == "contact") { menu_name_id.style.right = "13px"; }
	
	menu_name_id.style.display = "block";
}


function menu_name_hide() { 
	menu_name_id = document.getElementById("menu_name");
	menu_name_id.style.display = "none";
}

function menu_name_hide_default() { 
	menu_name_id = document.getElementById("menu_name_default");
	menu_name_id.style.display = "none";
}

// FOR PORTFOLIO:
function title_swap(span_id,new_title) 
{ 
	for(x=1;x<=15;x++) { document.getElementById("span"+x).innerHTML = ''; }
	if(new_title.length > 12) { document.getElementById(span_id).style.top = "19px";}
	document.getElementById(span_id).innerHTML = new_title; 
}
			
function img_show(img_src, num) 
{ 
	item_id = document.getElementById("item");
	content_id = document.getElementById("content");
	image_id = document.getElementById("item_image");
	document.getElementById("item_text").innerHTML = item_text[num];
	document.getElementById("portfolio_back").style.display = "block";
	
	content_id.style.display = "none";
	image_id.src = "images/portfolio_items/"+img_src;
	//image_id.style.width = image_id.width;
	item_id.style.display = "block";
	return false;
}
function img_hide() 
{ 
	item_id = document.getElementById("item");
	content_id = document.getElementById("content");
	document.getElementById("portfolio_back").style.display = "none";
	
	content_id.style.display = "block";
	item_id.style.display = "none";
	image_id.src = "images/graphics/spacer.gif";
}
function showItem(item_name, nav_element) 
{ 
	/* HIDE ALL IMG + CAPTIONS, DEACTIVATE ALL BULLETS */
	var p_tags = document.getElementById("td_portfolio_caption").getElementsByTagName("p");
	var img_tags = document.getElementById("td_portfolio_image").getElementsByTagName("img");
	var a_tags = document.getElementById("td_portfolio_nav").getElementsByTagName("a");
	for (x = 0; x<p_tags.length; x++) { p_tags[x].style.display = "none"; }
	for (x = 0; x<img_tags.length; x++) { img_tags[x].style.display = "none"; }
	for (x = 0; x<a_tags.length; x++) { a_tags[x].className = "k"; }
	
	/* ACTIVATE THE RIGHT IMG / CAPTION / BULLET COMBINATION */
	nav_element.className = "selected";
	document.getElementById("portfolio_item_"+item_name+"_text").style.display="block";
	document.getElementById("portfolio_item_"+item_name+"_image").style.display="block";
	
	
	
	/*content_id = document.getElementById("content");
	document.getElementById("portfolio_back").style.display = "none";
	
	content_id.style.display = "block";
	item_id.style.display = "none";
	image_id.src = "images/graphics/spacer.gif";*/
	return false;
}