var titles = [];
var icons = [];
var links = [];

titles[0] = 'Хочешь купить машину? Заходи к нам.';
icons[0] = 'car';
links[0] = 'http://carzilla.ua';

titles[1] = 'Грустно на работе? Скоро будет веселее.';
icons[1] = 'cat';
links[1] = 'http://myau.org.ua';

titles[2] = 'Хочешь компьютер? У нас дешево.';
icons[2] = 'computer';
links[2] = 'http://sell.ck.ua';

titles[3] = 'Собираешся заказть кухню? У нас лучшая фурнитура';
icons[3] = 'blum';
links[3] = 'http://blum.ck.ua';

var num = Math.floor(Math.random()*titles.length);

function myua_show_text()
{
	var myua_txt = document.getElementById('myua_txt');
	if (myua_txt.style.display == 'none')
		myua_txt.style.display = 'block';
	else
		myua_txt.style.display = 'none';
}

var style1 = "-moz-border-radius: 15px;-webkit-border-radius: 15px; -khtml-border-radius: 15px; border-radius: 15px;background:#fff;position:fixed;bottom:10px;right:10px;border:1px solid #ccc;padding:5px";
var style2 = "display:none;font-family:Tahoma, Arial;font-size:12px;float:left;margin:5px;";
var style3 = "text-align:right;margin-top:10px;font-size:11px;color:#777";

document.write("<div style='" + style1 + "'>");
document.write("<div id='myua_txt' style='"+style2+"'>" + titles[num] + "<div style='"+style3+"'><a style='color:#006' href='" + links[num] + "'>" + links[num] + "</a></div></div><a onClick='myua_show_text();return false;' href='javascript:void(0);'><img style='margin:4px;cursor:pointer;float:right;' src='http://myau.org.ua/images/icons/" + icons[num] + ".gif' border='0'/></a></div>");
