		$(function() {   
		
			var theWindow        = $(window),
			    $bg              = $("#bg"),
			    aspectRatio      = $bg.width() / $bg.height();
			    			    		
			function resizeBg() {
				
				if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
				    $bg
				    	.removeClass()
				    	.addClass('bgheight');
				} else {
				    $bg
				    	.removeClass()
				    	.addClass('bgwidth');
				}
							
			}
			                   			
			theWindow.resize(function() {
				resizeBg();
			}).trigger("resize");
		
		});

		
$(document).ready(function() {
	
	// Soft jump on TOP
	$('.scrollPage').click(function() {
   		var elementClicked = $(this).attr("href");
   		var destination = $(elementClicked).offset().top;
   		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
   	return false;
	});
	
	$('#klik1').click(function() {
			$('#zapis1').slideToggle("medium");
	});
	
// KONEC	
});		
