function show_astro(){
var imgArr=[ ['http://www.tv-zal.ru/astro.htm?smsp=love','http://www.tv-zal.ru/wp-content/themes/newspro/images/horo-3.gif'], 
 			 ['http://www.tv-zal.ru/astro.htm?smsp=ideal','http://www.tv-zal.ru/wp-content/themes/newspro/images/horo-6.gif'],
			 ['http://www.tv-zal.ru/astro.htm?smsp=god','http://www.tv-zal.ru/wp-content/themes/newspro/images/horo-1.gif']
			 
		];

var elem = document.getElementById('astroID');

if (elem.tagName == 'A'){
	var ind = Math.round(Math.random() * (imgArr.length-1));
	elem.href = imgArr[ind][0];
	for(i=0;i<elem.childNodes.length;i++){
		if (elem.childNodes[i].tagName == 'IMG'){
		elem.childNodes[i].src = imgArr[ind][1];
		}
	}
}

return true;
}
show_astro();
