$(document).ready(function() {

	// hide-show extra news \\
	$('.meerNieuws').hide();
	
	$("a[class^='toggle']").click(function() {
		var $this = $(this);
		var x = $this.attr("className");

		$("." + x + " span").toggleClass("active");
		$("div."+x).slideToggle();
	});


	// onclick empty text in login box \\
	$('#acc_user').focus(function() {
		$('#acc_user').attr('value', '');
	});
	$('#acc_pwd').focus(function() {
		$('#acc_pwd').attr('value', '');
	});

});