$(document).ready(function () {
// GALLERY
	$('.thumbs a').click(function() {
		return false;
	});
	$('.thumbs a').hover(function() {
		$('#foto>img').attr('src',$(this).attr('href'));
		$('.thumbs>li>a').removeClass('opacity');
		$(this).addClass('opacity');
		return false;
	});

// MEER INFO BUTTON

	$('#meerinfo').toggle(function() {
		$('#txt').children().hide();
// 		$('#foto').hide();
		$('.meerinfotxt').show();
		$(this).empty().append('Toon foto\'s').addClass('active');
		return false;
	}, function() {
		$('#txt').children().show();
		$('.meerinfotxt').hide();
// 		$('#foto').show();		
		$(this).empty().append('Meer info').removeClass('active');
	});

});
