$(document).ready(function(){
	
	$("#container").css({'height':$("#wrapper").height()+"px"}).fadeTo(0, 0.85);
	
});
$(window).load(function(){
	$("#container").css({'height':$("#wrapper").height()+"px"}).fadeTo(0, 0.85);
	
	scaleImage();
	
	window.onresize = function(){
		scaleImage();
	}	
	function scaleImage()
	{
		var image = new Image();
		image.src = $("#img img").attr('src');
		var iHeight = image.height;
		var iWidth = image.width;
		var wHeight = $(window).height();
		var wWidth = $(window).width();
        //tanja settings
		// var iRatio = iHeight/iWidth;
		// var wRatio = wWidth;
        //pepperminta settings
		// var iRatio = iHeight/iWidth;
		// var wRatio = wHeight/wWidth;
		//Palko muski
		var iRatio = iHeight/iWidth;
		var wRatio = wWidth;
		
		
		if(iRatio >= wRatio)
		{
			var factor = 0;
			$("#img img").css({'height':iWidth/factor+"px", 'width':iWidth/factor+'px'});
		}
		else
		{
			var factor = 0;
			$("#img img").css({'height':iHeight/factor+"px",'width':iWidth/factor+"px"});
			// $("#img img").css({'height':iHeight/factor+"px",'width':iWidth/factor+"px"});
			
		}
	}
	setTimeout(function(){
		$("#img img").fadeIn(500);
	}, 100);
})