// JavaScript Document

	function confirmIt(){
		alert('This item will now be added to your shopping cart');
	}

	function setVisibility(id, visibility) {
		document.getElementById(id).style.display = visibility;
	}
	

	function openNav(value)
	{
		document.getElementById(''+ value +'_hover').style.display = 'block';
		document.getElementById(''+ value +'_over').style.display = 'block';
	}
	function closeNav(value)
	{
		document.getElementById(''+ value +'_hover').style.display = 'none';
		document.getElementById(''+ value +'_over').style.display = 'none';
	}	

	function MM_jumpMenu(targ,selObj,restore)
	{ //v3.0
	  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	  if (restore) selObj.selectedIndex=0;
	}
