/**
 * jQuery.Preload - Multifunctional preloader
 * Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com
 * Dual licensed under MIT and GPL.
 * Date: 3/25/2009
 * @author Ariel Flesler
 * @version 1.0.8
 */
;(function($){var h=$.preload=function(c,d){if(c.split)c=$(c);d=$.extend({},h.defaults,d);var f=$.map(c,function(a){if(!a)return;if(a.split)return d.base+a+d.ext;var b=a.src||a.href;if(typeof d.placeholder=='string'&&a.src)a.src=d.placeholder;if(b&&d.find)b=b.replace(d.find,d.replace);return b||null}),data={loaded:0,failed:0,next:0,done:0,total:f.length};if(!data.total)return finish();var g=$(Array(d.threshold+1).join('<img/>')).load(handler).error(handler).bind('abort',handler).each(fetch);function handler(e){data.element=this;data.found=e.type=='load';data.image=this.src;data.index=this.index;var a=data.original=c[this.index];data[data.found?'loaded':'failed']++;data.done++;if(d.enforceCache)h.cache.push($('<img/>').attr('src',data.image)[0]);if(d.placeholder&&a.src)a.src=data.found?data.image:d.notFound||a.src;if(d.onComplete)d.onComplete(data);if(data.done<data.total)fetch(0,this);else{if(g&&g.unbind)g.unbind('load').unbind('error').unbind('abort');g=null;finish()}};function fetch(i,a,b){if(a.attachEvent&&data.next&&data.next%h.gap==0&&!b){setTimeout(function(){fetch(i,a,1)},0);return!1}if(data.next==data.total)return!1;a.index=data.next;a.src=f[data.next++];if(d.onRequest){data.index=a.index;data.element=a;data.image=a.src;data.original=c[data.next-1];d.onRequest(data)}};function finish(){if(d.onFinish)d.onFinish(data)}};h.gap=14;h.cache=[];h.defaults={threshold:2,base:'',ext:'',replace:''};$.fn.preload=function(a){h(this,a);return this}})(jQuery);

$.preload( 
'/about/photos_philadelphia/angelus_lou.jpg',
'/about/photos_philadelphia/ashworth_richard.jpg', 
'/about/photos_philadelphia/barbieri_craig.jpg',
'/about/photos_philadelphia/bradley_douglas.jpg', 
'/about/photos_philadelphia/caraccia_mark.jpg',
'/about/photos_philadelphia/castner_joe.jpg', 
'/about/photos_philadelphia/cianfrini_richard.jpg',
'/about/photos_philadelphia/clair_marc.jpg', 
'/about/photos_philadelphia/cosiol_jeff.jpg',
'/about/photos_philadelphia/cuilla_joseph.jpg', 
'/about/photos_philadelphia/diaz_l.jpg',
'/about/photos_philadelphia/difiglia_mary_beth.jpg',
'/about/photos_philadelphia/farley_richard.jpg',
'/about/photos_philadelphia/fisher_lorraine.jpg', 
'/about/photos_philadelphia/fiske_brad.jpg',
'/about/photos_philadelphia/frakes_allen.jpg', 
'/about/photos_philadelphia/gillespie_william.jpg',
'/about/photos_philadelphia/hsu_robert.jpg', 
'/about/photos_philadelphia/kirkpatrick_rich.jpg',
'/about/photos_philadelphia/klusek_frank.jpg', 
'/about/photos_philadelphia/leonard_paul.jpg',
'/about/photos_philadelphia/lindquist_jim.jpg', 
'/about/photos_philadelphia/lorenz_mike.jpg',
'/about/photos_philadelphia/maguire_mark.jpg',
'/about/photos_philadelphia/mark_richard.jpg',
'/about/photos_philadelphia/mcgranaghan_patrick.jpg', 
'/about/photos_philadelphia/murray_gerard.jpg',
'/about/photos_philadelphia/neilson_john.jpg', 
'/about/photos_philadelphia/nemia_frank.jpg',
'/about/photos_philadelphia/reed_tom.jpg', 
'/about/photos_philadelphia/robinson_john.jpg',
'/about/photos_philadelphia/rowland_charlie.jpg', 
'/about/photos_philadelphia/sagaram_srinivas.jpg',
'/about/photos_philadelphia/schotsch_kenneth.jpg', 
'/about/photos_philadelphia/sisle_ellen.jpg',
'/about/photos_philadelphia/suter_john.jpg',
'/about/photos_philadelphia/tejoon_jung.jpg',
'/about/photos_philadelphia/thompson_bob.jpg', 
'/about/photos_philadelphia/tinari_joseph.jpg',
'/about/photos_philadelphia/weiss_jonathan.jpg', 
'/about/photos_philadelphia/williams_kim.jpg',
'/about/photos_philadelphia/yadavia_james.jpg'
);