function show_fotostrana(){
var imgArr=[['http://fotostrana.ru/','http://widgets.fotocash.ru/foto468.gif'], ['http://start.fotostrana.ru/com/','http://widgets.fotocash.ru/comedy.gif'], ['http://start.fotostrana.ru/newpazl/','http://widgets.fotocash.ru/puzzle.gif'], ['http://start.fotostrana.ru/ser/','http://widgets.fotocash.ru/achtung.gif'], ['http://start.fotostrana.ru/o1/','http://widgets.fotocash.ru/love2.gif'], ['http://start.fotostrana.ru/girls/','http://widgets.fotocash.ru/girls2.gif'], ['http://start.fotostrana.ru/mens/','http://widgets.fotocash.ru/boys.gif'], ['http://start.fotostrana.ru/ow/','http://widgets.fotocash.ru/ow.gif'], ['http://start.fotostrana.ru/love/','http://widgets.fotocash.ru/love.gif'], ['http://start.fotostrana.ru/newfoto/','http://widgets.fotocash.ru/newfoto.gif'] ];

var elem = document.getElementById('fotostranaID');

if (elem.tagName == 'A'){
	var ind = Math.round(Math.random() * (imgArr.length-1));
	var refid = elem.getAttribute('refid');
	elem.href = imgArr[ind][0]+'?ref_id='+refid;
	for(i=0;i<elem.childNodes.length;i++){
		if (elem.childNodes[i].tagName == 'IMG'){
		elem.childNodes[i].src = imgArr[ind][1];
		}
	}
}

return true;
}
show_fotostrana();

