$(document).ready(function(){
	$("#navmenu-h li,#navmenu-v li").hover( function() {
			$(this).addClass("iehover");
		},
		function() {
			$(this).removeClass("iehover");
		}
	);
	
	jQuery(function(){jQuery(document).pngFix();});

	$("a.zoom").fancybox();
	
	$("#voorwaardenview").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});

	$("a[rel=fotogroep]").fancybox({
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over"><span style="float:right">Afbeelding ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>' + (title && title.length ? title : '&nbsp;' ) + '</span>';
		}
	});

});

function cijfers(evt) {
	var charCode = (evt.which) ? evt.which : evt.keyCode;
	if ((charCode >= 48 && charCode <=57) || charCode == 8 || charCode == 9){
		return true;
	} // Alleen maar cijfers en backspace toegestaan
	return false;
}
