jQuery.noConflict();

jQuery(function(){
	
	// zobrazení / skrytí menu
	jQuery('#rozcestnik-obcan').click(function(){
		jQuery("#obcan").show(500);
		jQuery("#firma").hide(500);
		jQuery("#turista").hide(500);
	});	
	jQuery('#rozcestnik-firma').click(function(){
		jQuery("#obcan").hide(500);
		jQuery("#firma").show(500);
		jQuery("#turista").hide(500);
	});
	jQuery('#rozcestnik-turista').click(function(){
		jQuery("#obcan").hide(500);
		jQuery("#firma").hide(500);
		jQuery("#turista").show(500);
	});
	
	jQuery('.zobraz_odkazy').click(function(){
		cislo_boxu = jQuery(this).attr("rel");
		jQuery("#odkaz_box_"+cislo_boxu).slideToggle();
	});	
	
	jQuery('.zobraz_podmenu').click(function(){
		cislo_podmenu = jQuery(this).attr("rel");
		jQuery("#podmenu_"+cislo_podmenu).slideToggle();
	});	
});

// funkce pro přidání políčka pro nový soubor
function pridejSoubor() {
	var cislo = ((document.getElementById("soubory_value").value -1)+ 2) +3;
	var ni = document.getElementById('soubory_box');
	var numi = document.getElementById('soubory_value');
	var num = (document.getElementById("soubory_value").value -1)+ 2;
	numi.value = num;
	var divIdName = "soubory_box_"+num;
	var newdiv = document.createElement('div');
	newdiv.setAttribute("id",divIdName);
	newdiv.innerHTML = "<input type=\"file\" name=\"soubory[]\" />";
	ni.appendChild(newdiv);
}
