function insertTopMenu()
{
  var topMenuHTML = '';
  topMenuHTML += '<map name="navig">';
	topMenuHTML += '	<area href="/#2" shape="rect" coords="259, 17, 357, 46" alt="стоимость" />';
	topMenuHTML += '	<area href="/" shape="rect" coords="107, 17, 183, 46" alt="главная" />';
	topMenuHTML += '	<area href="/#3" shape="rect" coords="361, 18, 470, 44" alt="о компании" />';
  topMenuHTML += '  <area href="/karta.html" shape="rect" coords="473, 18, 576, 45" alt="карта сайта" />';
  topMenuHTML += '  <area href="/#4" shape="rect" coords="582, 14, 671, 47" alt="контакты" />';
  topMenuHTML += '  <area href="/#1" shape="rect" coords="188, 18, 252, 43" alt="услуги" />';
  topMenuHTML += '</map>';
	topMenuHTML += '<img src="/templates/images/02.gif" usemap="#navig" border="0" width="1024" height="53" />';
	
	$('#topmenu').html(topMenuHTML);
}

function insertLeftCol()
{
  var leftColHTML = '';
  leftColHTML += '<p>Контакты:</p>';
  leftColHTML += '<p>г.Москва,<br />ул. Малая Дмитровка, д.12<br />тел. (495) 506-67-28<br />699-18-66<br />email: 5066728@mail.ru</p>';
  $('#leftcol').html(leftColHTML);
}

$(document).ready(function() {
  insertTopMenu();
  insertLeftCol();
});