function switchmenu(){
	var option=['zbozi','vyrobce'];
	for(var i=0; i<option.length; i++){
		obj=document.getElementById(option[i]);
		obj.className=(obj.className=="visible")? "hidden" : "visible"; 
	}
}

function producer(){
	document.getElementById('producerForm').submit();
}

function calculateTotalPrice(){
    document.getElementById('totalPriceDiv').innerHTML=priceDeliver+totalPrice+pricePlus+pricezapoj+pricezapojvest;
}
function deliverPrice(price,prague){

    priceDeliver=price*1;
    if(prague== 0){
        document.getElementById('deliverOut').style.display='block';
    }
    else{
        document.getElementById('deliverOut').style.display='none';
        
        pricePlus=0;
        pricezapoj=0;
        pricezapojvest=0;
    }
    
    calculateTotalPrice();
    
}

function over(){
		if (document.dopr.doruceni[2].checked)
		window.alert("ano");
		else window.alert("ne")
	}







function deliverOld(point,val){
    if(point.checked)pricePlus=val*1;
    else pricePlus=0;
    calculateTotalPrice();
}

function zapojeni(point,val){
    if(point.checked)pricezapoj=val*1;
    else pricezapoj=0;
    calculateTotalPrice();
}
function zapojvest(point,val){
    if(point.checked)pricezapojvest=val*1;
    else pricezapojvest=0;
    calculateTotalPrice();
}
