//_________________________________________________
//-------------------------------------------------
//--------------BY MICHAL RÁCHELA------------------
//--------------made for realtor-------------------
//-------------------------------------------------
//----------------14. 11. 2008---------------------
//-------------------------------------------------


function zmenit_slide(hodnota){
	if(hodnota == 1){ // Telekomunikačné služby
		document.getElementById('test1').style.display = 'block';
		document.getElementById('test2').style.display = 'none';
		document.getElementById('test3').style.display = 'none';
		document.getElementById('li1').style.backgroundPosition = 'top';
		document.getElementById('li2').style.backgroundPosition = 'bottom';
		document.getElementById('li3').style.backgroundPosition = 'bottom';
	}
	if(hodnota == 2){ // Webdesign
		document.getElementById('test1').style.display = 'none';
		document.getElementById('test2').style.display = 'block';
		document.getElementById('test3').style.display = 'none';
		document.getElementById('li1').style.backgroundPosition = 'bottom';
		document.getElementById('li2').style.backgroundPosition = 'top';
		document.getElementById('li3').style.backgroundPosition = 'bottom';
	}
	if(hodnota == 3){ // Webhosting
		document.getElementById('test1').style.display = 'none';
		document.getElementById('test2').style.display = 'none';
		document.getElementById('test3').style.display = 'block';
		document.getElementById('li1').style.backgroundPosition = 'bottom';
		document.getElementById('li2').style.backgroundPosition = 'bottom';
		document.getElementById('li3').style.backgroundPosition = 'top';
	}
}
