function showImage(src,width,heigth)
{
win=window.open("","wind","width="+width+",height="+heigth+",toolbar=no,menubar=no,location=no,scrollbars=no");
win.document.write("<html><head><title>Фото детального просмотра</title></head><body style='margin:0px;'><img src="+src+"  width="+width+" height="+heigth+"></body></html>");
win.document.close();
win.focus();
}
function overInnova(id)
{
	el=document.getElementById(id).childNodes;
	for(i=0;i<el.length;i++)
		el[i].className='inn'+i;
}
function outInnova(id)
{
	el=document.getElementById(id).childNodes;
	for(i=0;i<el.length;i++)
		el[i].className='inn';
}