$(document).ready(function(){
	//HOMEPAGINA, RECENTE ROUWBERICHTEN. AANVULLENDE NAVIGATIE.
	$("div.personaliaExtends").hide();
	$(".personalia").append("<div><a href='' title='meer informatie' class='readmore'><img src=\"images/layout/readmore.closed.gif\" alt=\"\" /> Meer informatie</a></div>");
	
	$(".readmore").click().toggle(function(){
		$(this).parents().siblings("div.personaliaExtends").slideDown("slow");
		$(this).html("<img src=\"images/layout/readmore.open.gif\" alt=\"\" /> Verbergen");
		return false;
	}, function(){
		$(this).parents().siblings("div.personaliaExtends").slideUp("slow");
		$(this).html("<img src=\"images/layout/readmore.closed.gif\" alt=\"\" /> Meer informatie");
	});
	//========================================================
	
	//SUPERFISH PULL DOWN MENU
	jQuery(function(){
		jQuery('ul.sf-menu').superfish();
	});
	//========================================================

	// Select box
	//$('select').selectbox();
	$('#paginaNummer').selectbox({debug: true});
	$('#plaatsnamen').selectbox({debug: true});
	$('#sorteren').selectbox({debug: true});
	
	$("#paginaNummer").change( function() { $("#paginatotaal").submit(); } );
	
	//$("#zoeken:button").click( function() { $("#zoeken").submit(); } );
	
	//$("#zoekbutton").click( function() { $("#zoekformulier").submit(); } );
	$("#zoekbutton").click( function() { $("#zoeken").submit(); } );

	// PNG fix
	$(document).pngFix();

});
