/* Author: 
Suki Design Studio
*/

/*--------------------------------------------------------------------------------*/
/*------------------------------ ON DOM READY -----------------------------------*/
/*--------------------------------------------------------------------------------*/

$(function(){

	/*load images*/
	$('#gallery-container article img').each(function(i){
		$(this).load( $(this).attr("src"), function(){
			$(this).css('display', 'block');
			$(this).parents('article').delay(100*i).animate({opacity: 1}, 500);
		});	
	});



});

























