$(function() {
	$('.meer').hide();
	$('.gigs').hide();
	$('.content2').hide();
});

$(document).ready(function(){
 
	bgImageTotal=6;
 
	randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
 
	imgPath=('/../images/banners/banner'+randomNumber+'.jpg');
	$('#banner').css('background-image', ('url("'+imgPath+'")'));
});

$('.sub').click(function() {
	if ($(this).next().is(":hidden")) {
		
			$(this).next().slideDown('fast', function() {
			});
		}
	else {
		$(this).next().slideUp('fast', function() {
		});
		
	}
});

$('.leesmeer').click(function() {
	if ($(this).prev().is(":hidden")) {
			
			$(this).prev().slideDown('slow', function() {
				$(this).next().html("minder »");
			});
		}
	else {
		$(this).prev().slideUp('slow', function() {
			$(this).next().html("meer »");
			
		});
		
	}
});
