
$(document).ready(function() {						   
		if (screen.width < 1024) {
			alert('Deze website kan niet volledig bekeken worden met een resolutie lager dan 1024 X 768');
			location.href='alternate.htm';
		}		
/*	$('ul.submenu').animate( { opacity:"0.0" } , 1 );	*/
	
			$(document).basicStartPage('260','65%');	
				
	$('#5_knop').bind('mouseover',function()	 {  
		$('#5_menu').initMenu('100');
	}); 
	
			
	$('#6_knop').bind('mouseover',function()	 {  
		$('#6_menu').initMenu('175');
	}); 
	
			
	$('#7_knop').bind('mouseover',function()	 {  
		$('#7_menu').initMenu('150');
	}); 
	
			
	$('#8_knop').bind('mouseover',function()	 {  
		$('#8_menu').initMenu('75');
	}); 
	
			
	$('#9_knop').bind('mouseover',function()	 {  
		$('#9_menu').initMenu('75');
	}); 
	
		
	
	
	$("#nav-one li").hover(
		function(){ $("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
	$(".nav").mouseout(
		function(){ $("ul", this).fadeOut("fast"); }, 
		function() { } 
	);	
	if (document.all) {
		$("#nav-one li").hoverClass ("sfHover");
	}

	
	$('body').bind('click',function() {  	
		$('ul.submenu').fadeOut('fast');
		
	});
	
 });

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
}; 



