$(document).ready(function() {
	
	// Shadowbox
	/*Shadowbox.init({
		players:["img","html","iframe"],
		width: 350
	});*/
	
	// Book overview
	
	$('div.book').mouseenter(function(){
		img = $(this).find('img');
		id = $(img).attr('id');
		desc = $(this).find('div.desc').html();
		main_desc = 'div#desc_main';
		
		$(img).attr('src', 'http://www.malburgen.com/gfx/books/large/' + id + '.jpg');
		$(main_desc).css('display', 'block').html('<div>&nbsp;</div>'+ desc);
		
	}).mouseleave(function(){
		$(img).attr('src', 'http://www.malburgen.com/gfx/books/' + id + '.jpg');
		//$(main_desc).html('<div>&nbsp;</div>');
	});
	
});

