// JavaScript Document
// pre sekciu homepage

// funkcia umoznuje vyber typu vozidla
function change_vyberpov(hodnota)
{

	document.getElementById('osobni').className = 'osobni';
	document.getElementById('moto').className = 'moto';
	document.getElementById('nakladni').className = 'nakladni';
	document.getElementById('ostatni').className = 'ostatni';

	var o = document.getElementById(hodnota);
	o.className = hodnota + '-hover';
	if (hodnota == 'osobni') document.getElementById('vber-z-hp-vozidlo').value = 1;
	if (hodnota == 'moto') document.getElementById('vber-z-hp-vozidlo').value = 3;
	if (hodnota == 'nakladni') document.getElementById('vber-z-hp-vozidlo').value = 2;
	if (hodnota == 'ostatni') document.getElementById('vber-z-hp-vozidlo').value = 5;

}


pic1= new Image(); 
pic1.src="http://www.netfinance.cz/template/nf_31/img/hp/ul-osobni_p.gif"; 
pic2= new Image(); 
pic2.src="http://www.netfinance.cz/template/nf_31/img/hp/ul-motocykl_a.gif"; 
pic3= new Image(); 
pic3.src="http://www.netfinance.cz/template/nf_31/img/hp/ul-nakladni_a.gif"; 
pic4= new Image(); 
pic4.src="http://www.netfinance.cz/template/nf_31/img/hp/ul-ostatni_a.gif"; 

