function section_highlight(menuid){
	var menuitem = document.getElementById(menuid);
	menuitem.style.backgroundColor = "yellow";
	menuitem.style.borderColor = "#666633";
}

function section_unhighlight(menuid){
	var menuitem = document.getElementById(menuid);
	menuitem.style.backgroundColor = "#999966";
	menuitem.style.borderColor = "#666633";

}

function cs_content_highlight(menuid){
	var menuitem = document.getElementById(menuid);
	menuitem.style.backgroundColor = "#336633";

}

function cs_content_unhighlight(menuid){
	var menuitem = document.getElementById(menuid);
	menuitem.style.backgroundColor = "#003333";
}

function cs_change_content(contentid, contentimg){
	var content_item = document.getElementById(contentid);

	var productimage = document.getElementById("productimage");
	productimage.src = contentimg;
	
	//hide all
	for (i=1;i<3;i++)
	{	
		content_element = "content_" + i;
		var contentitem = document.getElementById(content_element);
		contentitem.style.visibility = "hidden";
	}

	// show content
	content_item.style.visibility = "visible";
}

function next_prev(contentid){
	var content_item = document.getElementById(contentid);
	
	//hide all
	for (i=1;i<6;i++)
	{	
		content_element = "content_" + i;
		var contentitem = document.getElementById(content_element);
		contentitem.style.visibility = "hidden";
	}

	// show content
	content_item.style.visibility = "visible";
}