// execute your scripts when the DOM is ready. this is a good habit
$(function() {

	// initialize scrollable
	$('.container_alles').scrollable({
	
	size: 1, 
	loop: true,	
	clickable: false,
	speed: 600 <!-- Scroller werkt alleen als lightbox 2 plugin uitstaat -->
	
	}).autoscroll(10000);})
	
$(function() { 
    // expose the form when it's clicked or cursor is focused 
    $(".zoek_wrapper").bind("click keydown", function() { 
 
        $(this).expose({ 
 
            // custom mask settings with CSS 
            maskId: 'mask', 
 
            // when exposing is done, change form's background color 
            onLoad: function() { 
                this.getExposed().css({backgroundColor: '#fff'}); 
            }, 
 
            // when "unexposed", return to original background color 
            onClose: function() { 
                this.getExposed().css({backgroundColor: null}); 
            }, 
 
            api: true 
 
        }).load(); 
    }); 
});	


