function mostrarEmpresaMenu(){
	var empresaList = '#submenu-empresa';

	if ($(empresaList).is(":hidden"))
	{
		$(empresaList).slideDown("slow");
	} else {
		$(empresaList).slideUp("slow");
	}
	return true;	
}

function mostrarHacemosMenu(){
	var hacemosList = '#submenu-hacemos';

	if ($(hacemosList).is(":hidden"))
	{
		$(hacemosList).slideDown("slow");
	} else {
		$(hacemosList).slideUp("slow");
	}
	return true;	
}

function mostrarNoticiasMenu(){
	var noticiasList = '#submenu-noticias';

	if ($(noticiasList).is(":hidden"))
	{
		$(noticiasList).slideDown("slow");
	} else {
		$(noticiasList).slideUp("slow");
	}
	return true;	
}
