$(document).ready(function() {
	
	console.log(location.pathname);
	$('#sidebar li:not(.slide)').click(function() {
		
		// Get the href
		var href = $(this).find('a').attr('href');
		
		// Redirect the user (Search engines will find the a)
		location = href;
		
	});
	
	// Slidedown of sidebar 'producten' box when page is active
	if ( location.pathname === '/' ) {
		
		$('.slide').animate({
								height: '100px'
							  }, 2000)
					.css({
								'background-color':'#0099FF', 
								'cursor':'auto'});
	
	}
	
	// Set current year automatically for copyright in footer 
	var date = new Date();
	
	$('#copyYear').text(date.getFullYear());
	
});
