jQuery(function( $ ){			

	$.preload( '#portfolio div img', {
		onRequest:request,
		onComplete:complete,
		onFinish:finish,
		placeholder:'/assets/img/empty.gif',
		notFound:'/assets/img/empty.gif',
		threshold: 1
	});
	
	function complete( data ){
		$('#loader').show();
	};
	function request( data ){
		$('#loader').show();
	};
	function finish(){//hide the summary
		$('#loader').hide();
		//$('#overview').fadeIn('slow');
		//showPortfolio(1);
	};
		
});

var idkey = '1';

