$(document).ready(function()
	{
	$("#menu ul li").mouseover(function() 
		{
		$("#menu ul img:visible").hide();
    	$("img",this).show();
  		});
	});


$(document).ready(function()
	{
	$('.descubre').fadeIn('slow');
	});
						   

function confirmacion_not(id)
	{
	$("#msg").html('<img src="images/comprobando.gif" width="13" height="13" />');
	$.ajax({
		type: "GET",
		url: "confirmacion_not.php",
		data: "id="+id,
		success: function()
						{
						
						$("#msg").load("confirmacion_not.php");
						}
		   });
	}

function confirmacion_anuncio(id)
	{
	$("#msg").html('<img src="images/comprobando.gif" width="13" height="13" />');
	$.ajax({
		type: "GET",
		url: "confirmacion_anuncio.php",
		data: "id="+id,
		success: function(valor)
						{
						//$("#msg").load("confirmacion_anuncio.php");
						$("#msg").html(valor);
						}
		   });
	}


function confirmacion_equipo(id)
	{
	$("#msg").html('<img src="images/comprobando.gif" width="13" height="13" />');
	$.ajax({
		type: "GET",
		url: "confirmacion_equipo.php",
		data: "id="+id,
		success: function(valor)
						{
						//$("#msg").load("confirmacion_equipo.php");
						$("#msg").html(valor);
						}
		   });
	}

function confirmacion_enlace(id)
	{
	$("#msg").html('<img src="images/comprobando.gif" width="13" height="13" />');
	$.ajax({
		type: "GET",
		url: "confirmacion_enlace.php",
		data: "id="+id,
		success: function(valor)
						{
						//$("#msg").load("confirmacion_enlace.php");
						$("#msg").html(valor);
						}
		   });
	}
	

function cerrar()
	{
	$("#msg").html('');
	}
