var rusPhrasesByPage = {
  'common' : [],
  'internet-projects' : [
    ['Разработка iPhone приложений', 'internet-projects.html'],
    ['Сайт?', 'internet-projects.html'],
    ['Интернет проект?', 'internet-projects.html'],
    ['Сайт визитка?', 'internet-projects.html'],
    ['Онлайн пресс центр?', 'internet-projects.html'],
    ['Корпоративный блог?', 'internet-projects.html']
  ],
  'automoto-projects' : [
    ['Онлайн поддержка клиентов?', 'automoto-projects.html'],
    ['Доступ к услуге через Интернет?', 'automoto-projects.html'],
    ['Управление логистикой?', 'automoto-projects.html'],
    ['CRM?', 'automoto-projects.html'],
    ['Мини ERP?', 'automoto-projects.html']
  ],
  '404' : [
    ['Нет. Нет у нас такой страницы', 'index.html']
  ]
};

rusPhrasesByPage['common'] = rusPhrasesByPage['internet-projects'].concat(rusPhrasesByPage['automoto-projects']); 

function setHeadPhrase(pageName) {
	var arrPhrases = rusPhrasesByPage[pageName];
	if (arrPhrases == undefined) {
		arrPhrases = rusPhrasesByPage['common'];
	}
	var rand = Math.round(Math.random() * (arrPhrases.length - 1));
	var element = document.getElementById("headText");
	element.innerHTML = arrPhrases[rand][0];
	//element.setAttribute("href", arrPhrases[rand][1]);
}