function galeria()
{
	$('#anuncios').css('position','relative');
	$('#anuncios img').css('position','absolute');
	$('#anuncios img').css('top', 0);
	$('#anuncios img').css('left', 0);
	$('#anuncios img').css('display','none');
	$('#anuncios img').css('z-index','1');	
cargada=0;
l=$('#anuncios img').length;

di="<div style='position:absolute; top:185px; left:10px; z-index:1000'>";
for(x=0;x<l;x++)
{
	di=di+'<a href="javascript:carga_img('+x+')"><img src="img.jpg"/></a> ';
}
di=di+"</div>";
$('#anuncios').append(di);
$("#anuncios img").eq(0).fadeIn(1000);
	
}

function carga_img(x)
{
	$("#anuncios img").eq(cargada).fadeOut(1500);
	cargada=x;
	$("#anuncios img").eq(cargada).fadeIn(1000);
}
