function show_test_iq(){
var imgArr=[['http://www.tv-zal.ru/test.html?ts_t=4','http://www.tv-zal.ru/wp-content/uploads/2010/01/test-iq1.gif'], 
			 ['http://www.tv-zal.ru/test.html?ts_t=4','http://www.tv-zal.ru/wp-content/uploads/2010/01/test-iq2.gif'], 
 			 ['http://www.tv-zal.ru/test.html?ts_t=4',
'http://www.tv-zal.ru/wp-content/uploads/2010/01/test-iq3.gif'],			 
 			 ['http://www.tv-zal.ru/test.html?ts_t=4','http://www.tv-zal.ru/wp-content/uploads/2010/01/test-iq4.gif'],
 			 ['http://www.tv-zal.ru/test.html?ts_t=4',
'http://www.tv-zal.ru/wp-content/uploads/2010/01/test-iq5.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_iq();
