// JavaScript Document

function loadThumbs(nr, pag) {
	$.ajax({
			   type		: "GET",
			   url		: "php/thumbs.php?nr="+nr+"&pag="+pag,
			   cache	: false,
			   success	: function(data){ 

											$('div.leftDiv').html(data);

										}

		});
}

function loadPhoto(bestand, omschrijving) {
	$('#photoDiv').html("<img src=\"images/wait.gif\">");
	$('#fotoTitelDiv').html("<b>"+omschrijving+"</b>");

	$('#photoDiv').html("<img src=\"upload/fotos/thumbs/500/"+bestand+"\">");

}



$(document).ready(function(){
	$.ajax({
		   type: 	"GET",
		   url:		"php/count.php",
		   cache:	false
		   });
});