function show_test_otnochenia(){
var imgArr=[['http://www.tv-zal.ru/test.html?ts_t=14','http://www.tv-zal.ru/wp-content/uploads/2010/01/test-otnochenia.gif'], 
			 ['http://www.tv-zal.ru/test.html?ts_t=14','http://www.tv-zal.ru/wp-content/uploads/2010/01/test-otnochenia-1.gif'], 
 			 ['http://www.tv-zal.ru/test.html?ts_t=14',
'http://www.tv-zal.ru/wp-content/uploads/2010/01/test-otnochenia-2.gif']
 			 
 			 
		];

var elem = document.getElementById('testID');

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_test_otnochenia();
