
x=new Array(350,140,200,280,340,500,620,580,610,660,335,400,450,520,190);
y=new Array(75,150,195,155,200,215,163,10,270,70,165,142,107,152,100);
links=new Array("http://vitaclub.ru/services/tennis/","http://vitaclub.ru/services/sauna/","http://vitaclub.ru/openwater/","http://vitaclub.ru/services/water/","http://vitaclub.ru/services/salon/","http://vitaclub.ru/services/restaurant/","http://vitaclub.ru/services/fitness/","http://vitaclub.ru/services/tennis/","#","http://vitaclub.ru/services/tennis/","http://vitaclub.ru/services/restaurant/","http://vitaclub.ru/services/children/","http://vitaclub.ru/services/fitness/aero/","http://vitaclub.ru/services/tennis/","http://vitaclub.ru/openwater/");
hint_text=new Array("Теннис","Сауны и бани","Открытый бассейн","Бассейны","Салон SPA","Боулинг","Тренажерный зал","Теннис","Паркинг 250 мест","Теннисная академия","Ресторан","Детский клуб","Аэробика","Крытые корты","Открытый бассейн");

init= function()
{	
	
	cont=document.getElementById("stars");
	
	var hint=document.createElement('span');
	
	hint.className="hint";
	cont.appendChild(hint);
	for (i=0;i<x.length;i++)
	{
		var link=document.createElement('a');
		//var image=document.createElement('img');
		//image.src="img/star.png";
		link.style.left=x[i];
		link.style.top=y[i];
		link.href=links[i];
		
		//link.appendChild(image);
		cont.appendChild(link);
		
		link.index=i;
		link.onmouseover=function()
		{
			hint.appendChild(document.createTextNode(hint_text[this.index]));
			Number((this.style.left).replace("px",""))+20+"px";
			hint.style.left=Number((this.style.left).replace("px",""))+35+"px";
			hint.style.top=Number((this.style.top).replace("px",""))-15+"px";
		};
		
		link.onmouseout=function()
		{
			hint.removeChild(hint.firstChild);
		};
		
	};
};
window.onload=init;