/*
window.onload = function(){ // Better use use a modern onDomReady-Event instead
	if(document.getElementById && document.getElementsByTagName){ // DOM available?
		popup = new PopUp();
		popup.addType({
			name:"kontakt",
			width:800,
			height:500,
			scrollbars:false,
			center:true,
			location:false,
			status: false,
			resizable:false,
			title:""
			});
		popup.apply();
		}
	}
*/

$(document).ready(function() {
	var w = 800;
    var h = 500;
	$("a.group").fancybox({
	'frameWidth': w,
	'frameHeight': h,
	'hideOnContentClick': false
	});

});

$(window).load(function() {
	setTimeout(function(){
		$('#slider').nivoSlider({
			effect:'fade',
			animSpeed:1500,
			pauseTime:8000,
			startSlide:0,
			directionNav:false,
			controlNav:false,
			keyboardNav:false,
			pauseOnHover:false
		});
	}, 0);

});


