
$(document).ready(function() {
	
	// little css hack here because IE doesn't recognise the :last selector
	$(".article:last").css("border", 0);
	
	// fancy box all links that contain an image
	$(".article a").each(function() {
		
		if ($(this).children("img").length > 0) {
			
			$(this).fancybox({
				padding: 5,
				margin: 0,
				transitionIn: 'elastic',
				transitionOut: 'elastic',
				speedIn: 400,
				speedOut: 200,
				modal: false,
				opacity: true,
				overlayOpacity: 0.5,
				overlayColor: "#000"
			});
		}
	});
});

