/* GeefSamen (c) */

var standaardNickname = '';
var standaardPassword = '';
var radioStorage = [];
var msgTimerPointer = false;
var checkboxStorage = [];
var addNoAlpha = $.browser.msie && $.browser.version < 7 ? '_noalpha' : '';

// voor phpbb
var onload_functions = new Array();
var onunload_functions = new Array();

// data
var getalWoorden = ["nul","&eacute;&eacute;n","twee","drie","vier","vijf","zes","zeven","acht","negen","tien","elf","twaalf","dertien","veertien","vijftien","zestien","zeventien","achttien","negentien","twintig"];
var htmlLoader = ''; // vulen we later

// the allmighty initiator, please beware of its p0werzz
$(document).ready(function()
{
	htmlLoader = '<img src="images/'+netwerkKey+'/icons/miscLoader.gif" class="loader" />';

	bakeFormStyles();

	// laat een #autoTimer automatisch terugtellen en doorkoppelen
	if ( number = $("#autoTimer").html() )
	{
		countAutoTimer(parseInt(number));
	}
	
	// rijen uitklappen in te lange tabel
	$("td.showAllResults").click(function()
	{
		$(this).parent().hide().parent().parent().find("tbody").show();

	});
	/* IE6 Browser fix */
	if (($.browser.msie == true) &&($.browser.version =="6.0")){
		$("ul#menu > li").hover(function(){ $(this).addClass('hover'); },function(){ $(this).removeClass('hover'); })
	}
	
	$("input.zoekVeld").click(focusZoekVeld).focus(focusZoekVeld);
	$("#zoekSubmit").click(checkZoekVeld);
	
	$("a.fancybox").fancybox({
		'titlePosition': 'inside'
	});
	$("ul.middle-submenu").each(function(){
		$(this).parent().children('a').bind('click',function(){
			if (!$(this).parent().find('.middle-submenu').hasClass('visible'))
			{
				$(this).parent().find('ul').show().addClass('visible');
			}
			else
			{
				$(this).parent().find('ul').hide().removeClass('visible');	
			}
			return false;
		})
		
	
	});
	
});


