$(document).ready(function() {
	$("#yhteystiedot").click(function(){
		$("#contentSlider").fadeOut(300);
	});
	$("#etusivu").click(function(){
		$("#contentSlider").fadeOut(300);
	});

	$("#openPicture").click(function(){
		$("#popupBackground").fadeIn(300);		
		var windowWidth = document.documentElement.clientWidth;
		var windowHeight = document.documentElement.clientHeight;
		var popupHeight = $("#popupHolder").height();
		var popupWidth = $("#popupHolder").width();
		$("#popupHolder").css({
		"top": "100px",
		"left": windowWidth/2-popupWidth/2
		});
		$("#popupClose").css({
		"top": "85px",
		"left": windowWidth/2+popupWidth/2-15
		});
		var t=setTimeout("popupFadeIn()",500);
		
	});
	
	$("#popupBackground").click(function(){
		disablePopup();
	});
	$("#popupClose").click(function(){disablePopup();});
	
});

function clear(){
$("#contentBackground").css("height","");
$("#contentSlider").fadeIn(300);
}
function disablePopup(){
	$("#popupBackground").fadeOut(300);
	$("#popupHolder").fadeOut(500);
	$("#popupClose").fadeOut(500);
}

function popupFadeIn(){
$("#popupHolder").fadeIn(500);
$("#popupClose").fadeIn(500);
}
