/* Fade */
$(function(){
	$(".tab").hover(function () {
		$(this).fadeTo(200, 0);
	},
	function () {
		$(this).fadeTo(200, 1.0);
	});
})

/* FancyBox */
$(document).ready(function(){
	$(".thumbnail").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut':	300,
		'hideOnContentClick': true,
		'overlayShow': true
	});

	$("a.external").fancybox({
		'zoomSpeedIn': 400,
		'zoomSpeedOut':	300,
		'hideOnContentClick': true,
		'overlayShow': true
	});	
});