function partneriSkrytNazvy()
		{
			$("#podnikyMenu span.cityName").css({display: "none"});
		}

		function partneriPridatCityIcons()
		{
			$("<span></span>").addClass("cityIcon").appendTo("#podnikyMenu a");
		}

		$(document).ready(function(){
			$("#menuManualNew li").hover(
				function(){ $("ul", this).fadeIn("fast"); }, 
				function() { } 
			);
			if (document.all) {
				$("#menuManualNew li").hoverClass ("sfHover");
			}
			/*partneriSkrytNazvy();
			$("<div id='podnikyCityName'></div>").appendTo("#podnikyMenu");
			partneriPridatCityIcons();
			$("span.cityIcon").hover(function(){$("#podnikyCityName").html($("#"+this.parentNode.id).text())}, function(){});*/
		});
		  
		$.fn.hoverClass = function(c) {
			return this.each(function(){
				$(this).hover( 
					function() { $(this).addClass(c);  },
					function() { $(this).removeClass(c); }
				);
			});
		};
		
		function changePicture(picture_id, path) {
       			document.getElementById(picture_id).src = 'UserFiles/'+path; 
    		}
		function changePictureEn(picture_id, path) {
       			document.getElementById(picture_id).src = '../UserFiles/'+path; 
    		}
