(function(){
	$(document).ready(function(){
		
		setTimeout(function(){
			$(window).resize(function(){
				fit();
			})
			fit();
		}, 100)
		
	})
	
	function fit(){
		$(".gallery a").each(function(i){
			var last = $(".gallery a").eq(i-1);
			if(i == 0 || last.offset().top < $(this).offset().top){
				$(this).css("margin-left", Math.floor(Math.random() * 150) + "px");
			} else {
				$(this).css("margin-left", "0px");
			}
		})
	}
	
})();

function openPopup(url, windowW, windowH) {
	!windowW ? windowW = 500 : 0;
	!windowH ? windowH = 400 : 0;
	/*var windowW = screen.availWidth;
	var windowH = screen.availHeight;*/
	// Errechnet Koordinaten, um das Popup zentriert zu platzieren
	var posLeft = (screen.availWidth/2)-(windowW/2);
	var posTop = (screen.height/2)-(windowH/2);
	
	var popupWindow = window.open(url,"PRODUCTION BERLIN","height=" + windowH + ",width=" + windowW + ",top="+posTop+",left="+posLeft+",status = no,toolbar = no,menubar = 0,location = 0,resizable = 0,titlebar = 0,scrollbars = yes,fullscreen = no");
	popupWindow.focus();
}
