// JavaScript Document
<!--
	
    function menub(name, page, descripsh)
    {
        this.name = name;
        this.page = page;
        this.descripsh = descripsh;
    }

    var menubs = new Array();
  menubs[1] = new menub("Main", "http://www.alyona-kravchuk.com", "The international holding Prime Invest - development, building, project management");
  menubs[2] = new menub("Services", "http://www.prime-storm.com/eng_services.html", "The international holding Prime Invest - development, building, project management");
  menubs[3] = new menub("Portfolio", "http://www.alyona-kravchuk.com/portfolio.php", "The international holding Prime Invest - development, building, project management");
  menubs[4] = new menub("Prime Invest", "http://www.prime-storm.com", "multimedia site of international company PRIME Invest - real estate company");


	for(var i=1;i<menubs.length;i++)

document.write('<a href="' + menubs[i].page + '" title="' + menubs[i].descripsh + '">' + menubs[i].name + '</a>'
			+'&nbsp;&nbsp;|&nbsp;&nbsp; ');
 //-->
 
 
