// JavaScript Document
$('document').ready(function(){
		//$(document).pngFix();
		$('body').supersleight({shim: 'images/shim.gif'});
		$.fn.supersized.options = {  
			startwidth: 1024,  
			startheight: 768,
			minsize: .50,
			slideshow: 1,
			slideinterval: 5000  
		};
		
        $('#supersize').supersized();
		//zet de basiskleur voor deze pagina
		initMenu('#666');
    });

initMenu = function(rollcol){
	
	$('.menuitem').css('color',rollcol);
	
	$('.menuitem').hover( 
		function(){
			$(this).parent().find('.menuitem').css('color', '#000');
			$(this).css('color', rollcol);
			$(this).parent().css('background', 'url(images/witraster32.png)');
		},
		function(){
			$(this).parent().find('.menuitem').css('color',rollcol);
			$(this).parent().css('background','');
		}
	);
	
	$('.menu').hover( 
		function(){
			$(this).css('background', 'url(images/witraster32.png)');
			},
		function(){
			$(this).css('background','');
		}
	);
	
	$('.navkop').hover(
		function(){
			$(this).parent().css('background', 'url(images/witraster32.png)');
		},
		function(){
			$(this).parent().css('background','');
		}
	);	
}

//sprong voor het witte vlak
function jump(where){
		window.location.href=where;
	}
	
	
	
