
(function($)
{$.fn.extend({thumbs:function(settings)
{$("#body").css("visibility","visible");settings=$.extend({},settings);return this.each(function()
{$(".section>ol>li",this).each(function(i)
{var el=$(this);el.css("display","none");setTimeout(function()
{el.fadeIn("slow");},200*i);var row=$(".nav",this);var count=0;var img=$("img",this);var len=img.length;var li=this;img.css({display:"none"});var show=function()
{$("img",li).each(function(j)
{row.css("backgroundImage","none");var img=$(this);setTimeout(function()
{img.fadeIn("slow");},100*j);});}
img.bind("load",function()
{count++;if(count==len){show();}});img.each(function(j)
{var el=$(this);if(el.attr("complete")){count++;}
if(count==len){show();}});});});}});})(jQuery);
