// JavaScript Document<!--function padajucimeni(id) {var d = document.getElementById(id);	for (var i = 1; i<=10; i++) {		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}	}if (d) {d.style.display='block';}}			function change_opis(id) {var d = document.getElementById(id);	for (var i = 1; i<=10; i++) {		if (document.getElementById('tip'+i)) {document.getElementById('tip'+i).style.display='none';}	}if (d) {d.style.display='block';}}				var pictures = Array();	var picimage = Array();	var position = Array();	position[1] = Array();	position[1]['x'] = 851;	position[1]['y'] = 39;	position[1]['w'] = 86;	position[1]['h'] = 64;	position[1]['on'] = false;	position[2] = Array();	position[2]['x'] = 758;	position[2]['y'] = 128;	position[2]['w'] = 72;	position[2]['h'] = 58;	position[2]['on'] = false;	position[3] = Array();	position[3]['x'] = 651;	position[3]['y'] = 172;	position[3]['w'] = 68;	position[3]['h'] = 51;	position[3]['on'] = false;	position[4] = Array();	position[4]['x'] = 556;	position[4]['y'] = 123;	position[4]['w'] = 61;	position[4]['h'] = 45;	position[4]['on'] = false;	position[5] = Array();	position[5]['x'] = 488;	position[5]['y'] = 66;	position[5]['w'] = 46;	position[5]['h'] = 35;	position[5]['on'] = false;function picrotation() {	for (i = 1; i<=25; i++) {		if (document.getElementById('rotationpic'+i)) {			document.getElementById('rotationpic'+i).style.display='none';			pictures[i] = document.getElementById('rotationpic'+i);			picimage[i] = document.getElementById('rp'+i);		}	} 	picrotation_positioner(1,pictures[10],picimage[10]); 	picrotation_positioner(2,pictures[11],picimage[11]); 	picrotation_positioner(3,pictures[12],picimage[12]); 	picrotation_positioner(4,pictures[13],picimage[13]); 	picrotation_positioner(5,pictures[14],picimage[14]);	setInterval('picrotation_positioner_run()',3000);}function picrotation_positioner(posnr, id, picid) {	var element = $(id);	var elementpic = $(picid);	position[posnr]['on'] = id;	element.style.top=position[posnr]['y']+'px';	element.style.left=position[posnr]['x']+'px';	elementpic.style.width=position[posnr]['w']+'px';	elementpic.style.height=position[posnr]['h']+'px';	element.setStyle({opacity: 0.0});	element.style.display = 'block';	new Effect.Fade(element, {from:0.0, to: 1.0});}function picrotation_positioner_off(id) {	var element = $(id);	new Effect.Fade(element);}var nextpic = 0;var nextpos = 0;function picrotation_positioner_run() {	nextpic = nextpic+1;	nextpos = nextpos+1;	if(nextpos == 6) { nextpos = 1; }	if(!pictures[nextpic]) { nextpic = 1; }// 	alert(nextpic);	if(position[nextpos]['on']) { picrotation_positioner_off(position[nextpos]['on']); }	setTimeout("picrotation_positioner(nextpos,pictures[nextpic],picimage[nextpic])", 500);}//-->
