function loadIMGs()
{
	var imagesList = [
	               'images/js_over.jpg','images/about_over.jpg','images/products_over.jpg','images/parher_over.jpg','images/contacts_over.jpg','images/info_over.jpg'];
	
	var aImages = [];
	
	for (var i = 0, len = imagesList.length; i < len; i++) {
	
	       aImages[i] = new Image();
	
	       aImages[i].src = imagesList[i];
	
	}
}
  function mOver(im)
  {
   im.src=im.src.replace("out","over")
  }
  function mOut(im)
  {
   im.src=im.src.replace("over","out")
  }
  function SelMenu(id)
{
	if(id==1){
	document.getElementById("1").src='images/js_over.jpg'; //главная
	document.getElementById("1").style.cursor = 'pointer';
	
	}
	if(id==2){
	document.getElementById("2").src='images/about_over.jpg'; //о компании
	document.getElementById("2").style.cursor = 'pointer';
	}
	if(id==3){
	document.getElementById("3").src='images/products_over.jpg'; //продукция
	document.getElementById("3").style.cursor = 'pointer';
	}
	if(id==4){
	document.getElementById("4").src='images/parther_over.jpg'; //парнтнерам и клиентам
	document.getElementById("4").style.cursor = 'pointer';
	}
	if(id==5){
	document.getElementById("5").src='images/contacts_over.jpg'; //контакты
	document.getElementById("5").style.cursor = 'pointer';
	}
	if(id==6){
	document.getElementById("6").src='images/info_over.jpg'; //полезная информация
	document.getElementById("6").style.cursor = 'pointer';
	}	
}
function deSelMenu(id)
{
	if(id==1){
	document.getElementById("1").src='images/js.jpg'; //главная
	document.getElementById("1").style.cursor = 'pointer';
	}
	if(id==2){
	document.getElementById("2").src='images/about.jpg'; //о компании
	document.getElementById("2").style.cursor = 'pointer';
	}
	if(id==3){
	document.getElementById("3").src='images/products.jpg'; //продукция
	document.getElementById("3").style.cursor = 'pointer';
	}
	if(id==4){
	document.getElementById("4").src='images/parther.jpg'; //парнтнерам и клиентам
	document.getElementById("4").style.cursor = 'pointer';
	}
	if(id==5){
	document.getElementById("5").src='images/contacts.jpg'; //контакты
	document.getElementById("5").style.cursor = 'pointer';
	}
	if(id==6){
	document.getElementById("6").src='images/info.jpg'; //полезная информация
	document.getElementById("6").style.cursor = 'pointer';
	}	

}
function feedback()
{
 www=window.open('feedback.php','fb','width=400,height=400,top=120,left=245,toolbar=no,personalbar=no,location=no,directories=no,statusbar=no,menubar=no,status=no,resizable=no');
}