var g_baseURL = "http://w-co.com/Domains/w-co.de";
var g_last_mnu_item = null;

function manageDisplay(id,lid)
{
//alert(lid);
  //Effect.toggle(id,'BLIND', { duration: 0.5 });
  
  switch(id)
  {
	case "sub_4323":
		//lang_url = (lid == 2) ? "/en/home.html" : "/de/startseite.html";
		window.location.href="index.php?id=4323&L="+lid;
		return;
		break;
	case "sub_27":
		//lang_url = (lid == 2) ? "/en/products.html" : "/de/produkte.html";
		window.location.href="index.php?id=27&L="+lid;
		return;
		break;
	
	case "sub_5":
		//lang_url = (lid == 2) ? "/en/products.html" : "/de/produkte.html";
		window.location.href="index.php?id=5&L="+lid;
		return;
		break;		
	
	case "sub_4361":
		//lang_url = (lid == 2) ? "/en/products.html" : "/de/produkte.html";
		window.location.href="index.php?id=4360";
		return;
		break;
	default:
		break;
  }
  //alert($('.mnu_lvl2_act').lenght);
  if($('.mnu_lvl2_act', '#' + id).length > 0)
	return;
  
  if(g_last_mnu_item == id)
  {
  	$('#' + id).slideToggle("slow");
  }
  else if(g_last_mnu_item == null)
  {
  	$('#' + id).slideDown("slow");
  }
  else
  {
  	$('#' + g_last_mnu_item).slideUp("slow");
  	$('#' + id).slideDown("slow");
  }

  g_last_mnu_item = id;
}

function updateHiddenField()
{
	value = $('news_head').innerHTML;
	cleanedValue = value.replace(/(<([^>]+)>)/ig,"");
	$('mailformangebot').value = cleanedValue;
}

