// JavaScript Document

function muestraTituloNoticia(id, td)
{
	new Ajax.Request('/inc/ajaxIndex/cambiaNoticia.php',
					 {
						 method: 'post',
						 onLoaded: function ()
						 {
							$('titNotAlea').innerHTML = '... actualizando ...';
						 },
						 onSuccess: function (respuesta)
						 {
							 $('titNotAlea').innerHTML=respuesta.responseText;
						 },
						 parameters: 'id='+id
					 }
					);
}

function amaMenu(id)
{
	 $(id).style.backgroundColor = "#E6E6E6";
}

function bcoMenu(id)
{
   $(id).style.backgroundColor = "#FFFFFF";
}

function muestraTituloNoticiaGde(id, elemento)
{
	nA = document.createElement("a");
	nA.href = "nt/nota.php?id=" + id;
	
	img = document.createElement("img");
	img.src = "img/" + id + ".jpg";
	img.width = "280";
	img.height = "195";
	img.border = "0";
	img.align = "left";
	
	nA.appendChild(img);
	
	$("cntNot0").style.backgroundColor = "#FFFFFF";
	$("cntNot1").style.backgroundColor = "#FFFFFF";
	$("cntNot2").style.backgroundColor = "#FFFFFF";
	$("cntNot" + elemento).style.backgroundColor = "#E6E6E6";
	
	
	$("showNot").innerHTML = "";
	$("showNot").appendChild(nA);
	
}



