n=8;
function set_image(a) {
	for(i=1;i<=n;i++) {
		if(a == "1") {
			document.getElementById('mm1').innerHTML = "<img src=i/about.gif width=68 height=21 border=0>";
		} else if (a=="2") {
			document.getElementById('mm2').innerHTML = "<img src=i/news.gif width=69 height=16 border=0>";
		} else if (a=="3") {
			document.getElementById('mm3').innerHTML = "<img src=i/afisha.gif width=58 height=19 border=0>";
		} else if (a=="4") {
			document.getElementById('mm4').innerHTML = "<img src=i/foto.gif width=45 height=18 border=0>";
		} else if (a=="5") {
			document.getElementById('mm5').innerHTML = "<img src=i/music.gif width=63 height=17 border=0>";
		} else if (a=="6") {
			document.getElementById('mm6').innerHTML = "<img src=i/video.gif width=50 height=16 border=0>";
		} else if (a=="7") {
			document.getElementById('mm7').innerHTML = "<img src=i/pressa.gif width=63 height=20 border=0>";
		} else if (a=="8") {
			document.getElementById('mm8').innerHTML = "<img src=i/fan.gif width=79 height=18 border=0>";
		}
	}
}
function no_image(a) {
	for(i=1;i<=n;i++) {
		if(a == "1") {
			document.getElementById('mm1').innerHTML = "<img src=i/0.gif width=68 height=21 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm1\';\">";
		} else if (a=="2") {
			document.getElementById('mm2').innerHTML = "<img src=i/0.gif width=69 height=16 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm2\';\">";
		} else if (a=="3") {
			document.getElementById('mm3').innerHTML = "<img src=i/0.gif width=58 height=19 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm3\';\">";
		} else if (a=="4") {
			document.getElementById('mm4').innerHTML = "<img src=i/0.gif width=45 height=18 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm4\';\">";
		} else if (a=="5") {
			document.getElementById('mm5').innerHTML = "<img src=i/0.gif width=63 height=17 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm5\';\">";
		} else if (a=="6") {
			document.getElementById('mm6').innerHTML = "<img src=i/0.gif width=50 height=16 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm6\';\">";
		} else if (a=="7") {
			document.getElementById('mm7').innerHTML = "<img src=i/0.gif width=63 height=20 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm7\';\">";
		} else if (a=="8") {
			document.getElementById('mm8').innerHTML = "<img src=i/0.gif width=79 height=18 border=0 onmouseout=\"this.className=\'\';\" onmouseover=\"this.className=\'mm8\';\">";
		}
	}
}

var t=1;
function ticker(max)
{
	if(t==max)
	{
		t=0;
		p=max;
	}
	else
	{
		p=t;
	}
	t++;
	document.getElementById('ticker'+p).style.display = 'none';
	document.getElementById('ticker'+t).style.display = 'block';
}