/* Dropdown Menu
var obj = null;
function checkHover() {if (obj){obj.find('ul').fadeOut('fast');}}
$(document).ready(function() {$('#navigation > ul').hover(function() {if (obj) {obj.find('ul').fadeOut('fast');obj = null;}$(this).find('ul').fadeIn('fast');}, function() {obj = $(this);setTimeout("checkHover()", 4000);});}); */


/*var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');
	} //if
} //checkHover

$(document).ready(function() {
	$('.menu ul > li').hover(function() { // .menu ul > li
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			40000);
	});
});*/

function openPopUp(url,w,h) {
	newwindow=window.open(url, "Doneer aan It&#39;s Your Turn", config="location=0, directories=0, status=0, resizable=1, menubar=0, toolbar=0, scrollbars=1, width=w,height=h");
	if (window.focus) {newwindow.focus()}
	return false;
}