// JavaScript Document

function show_horo120x240(){
var imgArr=[ ['astro.htm','god-1.gif'], 
			['astro.htm','horo-1.gif'], 
			['astro.htm','horo-2.gif'], 
			['astro.htm','horo-3.gif'], 
			['astro.htm','horo-4.gif'], 			
			['astro.htm','horo-5.gif'], 
			['astro.htm','horo-7.gif'], 
			['astro.htm','horo-8.gif'],
			['astro.htm','horo-9.gif'],
			['astro.htm','ideal-1.gif'],	
			['astro.htm','ideal-2.gif'],	
			['astro.htm','ideal-3.gif'],	
			['astro.htm','ideal-4.gif'],	
			['astro.htm','ideal-5.gif'],	
			['astro.htm','ideal-6.gif'],	
			['astro.htm','love-2.gif'],				
			['astro.htm','love-3.gif'],	
			['astro.htm','love-4.gif'],	
			['astro.htm','love-5.gif'],	
			['astro.htm','love-6.gif'],				
			['astro.htm','love-7.gif'],				
			['astro.htm','love-8.gif'],				
			['astro.htm','prg-1.gif'],				
			['astro.htm','prg-3.gif'],				
			['astro.htm','prg-4.gif'],							
			['astro.htm','prg-5.gif']
		];

var elem = document.getElementById('horo');

if (elem.tagName == 'A'){
	var ind = Math.round(Math.random() * (imgArr.length-1));
	elem.href = 'http://damsel.ru/' + imgArr[ind][0];
	for(i=0;i<elem.childNodes.length;i++){
		if (elem.childNodes[i].tagName == 'IMG'){
		elem.childNodes[i].src = 'http://damsel.ru/img/horo120x240/' + imgArr[ind][1];
		}
	}
}

return true;
}
show_horo120x240();

