$(document).ready(function(){
	$('a.media').fancybox({
		overlayColor : '#000',
		overlayOpacity: 0.7
	});

	$('#coda-slider-1').codaSlider({
		dynamicArrows: 0,
		autoSlide: 1,
		autoSlideInterval: 4000
	});

	$('.panel-wrapper img').each(function(){
		fadeThumbnail($(this));
	});
});

/**
 * Fade thumbnail-image
 *
 * @param $img
 */
function fadeThumbnail($img) {
	// Hide the image
	$img.hide().stop();

	// Create the image resource
	var $t  = $img;
	var img = new Image();
	img.onload = function() {
		$t.fadeIn();
	}

	// Load the image
	img.src = $img.attr('src');
}
