// JavaScript Document
function boxOther(e)
{
	if (document.getElementById("boxOther"+e).style.display=="none")
	{
		$('#boxOther'+e).fadeIn();
	}
	else
	{
		$('#boxOther'+e).fadeOut();
	}	
}
function boxOtherOff(e)
{
		$('#boxOther'+e).fadeOut();
}
function ocLibreria()
{
	if (document.getElementById("listSubmenuL").style.display=="none")
	{
		$('#listSubmenuL').show();
		$('#listSubmenuP').hide();
	}
	else
	{
		$('#listSubmenuL').show();
	}
}
function ocPapeleria()
{
	if (document.getElementById("listSubmenuP").style.display=="none")
	{
		$('#listSubmenuP').show();
		$('#listSubmenuL').show();
	}
	else
	{
		$('#listSubmenuP').hide();
	}
}