// submit
function submitMe(dit){
	$(dit).submit();
}


/* goSetHeight */
function goSetHeight(dit){	

	var maximaHeight = 0;
	
	$(dit).each(function(){
							   
		nuHeight = $(this).height();
		if(nuHeight > maximaHeight){
			
			maximaHeight = $(this).height();
		}
		
	});

	$(dit).each(function(){
		$(this).height(maximaHeight);
	});
	
};


// fotoboek
$(document).ready(function() {
	// put all your jQuery goodness in here.
	$(".fotoboek .fb-volgende").width("4px");
	$(".fotoboek .fb-vorige").width("4px");
	$(".fotoboek").hover(
		function () {
			$(".fotoboek .fb-volgende").animate({width:'30px'}, 300);
			$(".fotoboek .fb-vorige").animate({width:'30px'}, 300);
		},
		function () {
			$(".fotoboek .fb-volgende").animate({width:'4px'}, 200);
			$(".fotoboek .fb-vorige").animate({width:'4px'}, 200);
		}
	);
});
