$(document).ready(function() {
			
	$(".sb").hoverIntent({    
		sensitivity: 1,  
		interval: 200,     
		over: function(){
			$(this).addClass('sb-hover');
		},     
		timeout: 500,     
		out: function(){
			$(this).removeClass('sb-hover');
		}
	});
	
	// image bijschrift
	$.each($('.foto-links'), function(i, val) {
		var img = $(val);
		img.wrap('<span class="foto-bijschrift-links" />').parent().append('<em>' + img.attr('alt') + '</em>');
	});
	
	$.each($('.foto-rechts'), function(i, val) {
		var img = $(val);
		img.wrap('<span class="foto-bijschrift-rechts" />').parent().append('<em>' + img.attr('alt') + '</em>');
	});
	
	$.each($('.foto-groot'), function(i, val) {
		var img = $(val);
		img.wrap('<div class="foto-bijschrift-groot" />').parent().append('<em>' + img.attr('alt') + '</em>');
	});
	
	$('a[href*="/element/BookPreview/display/book"]').colorbox();
});


function bookpreviewload(url){
	
	$.get(url, function(data) {
  		$('.book-preview-container').parent().html(data);
		  
	});
	
	
	
}
