$(document).ready(function() {
	
	// some styling
	$('#menu li.categorie:first').css({'margin-top':15});
	$('#menu li.categorie:last').css({'margin-bottom':15});
	
	// project lighbox 
	$('body.categorie a.lightbox').each(function(){
		// replace link to project with link to img
		var href=$(this).children('img:first').attr('src');
		href=href.replace(/_thumb_/,'');
		$(this).attr('href',href);
		// create lighbox of all foto's
		var gallery=$(this).parent('div.item').children('a');
		$(gallery).slimbox();
	});
	
});
