$(document).ready(function() {
	
	// uitklapper
	$(".boeken .wpsc_container").hide();

	$(".boeken h2").click(function() {
		$(this).next(".boeken .wpsc_container").slideToggle({easing: "easein",speed: 100});
	});
	
	$(".boeken h2").hover(function () {
		$(this).css({'color' : '#B9202E', 'padding-left' : '3px'});
	}, function () {
		var cssObj = {
		'color' : '#000',
		'padding-left' : '0px'
	}
		$(this).css(cssObj);
	});
	


});
