function combinations(id) {
	if (value_action[document.getElementById('combination_id').options[document.getElementById('combination_id').selectedIndex].value] == 0) {
		$("#price_dph").text(value_dph[document.getElementById('combination_id').options[document.getElementById('combination_id').selectedIndex].value]);
		$("#price_old").text('');
	} else {
		$("#price_dph").text(value_action[document.getElementById('combination_id').options[document.getElementById('combination_id').selectedIndex].value]);
		$("#price_old").text(value_dph[document.getElementById('combination_id').options[document.getElementById('combination_id').selectedIndex].value] + ' Kč');
	}
	
}


$(document).ready(function(){
	
	$("#actions_inner").easySlider({

		prevText:'VLEVO',
		nextText:'VPRAVO',
		controlsShow:false,
		controlsFade:false,
		speed:400,
		
		

		orientation:'horizontal'
	});
});



