$(document).ready( function() {
	
	$('article.image').each(function(index)
	{
		var delay = 200;
        $(this).animate({ opacity : 0 }, 0 ).css({'visibility' : 'visible'}).show().delay( 100 * index ).animate({ opacity : 0.8 }, 600 );
	});

	$('article.image').hover(function()
	{
		$(this).css({'opacity' : '1'});
	}, 	function()
		{
			$(this).css({'opacity' : '0.86'});
		}
	);

	$('#fs_gallery').fsimgviewer({
		fullsize:true
	});

});
