  (function() {
    var ga = document.createElement('script');
    ga.src = '//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js';
    ga.setAttribute('async', 'true');
    document.documentElement.firstChild.appendChild(ga);
  })();
  window.onload=function(){
	try {
		$('a[target="work"]').each(function(){
			var src = $(this).attr('href');
			$.ajax({url:src,dataType:'html',success:function(data,status,xhr){
				thedom = $('<div />').html(data);
				$('img',thedom).each(function(){
						i = new Image();
						i.src = $(this).attr('src');
				})
			}})	
		})
        } catch(e) {;}
}
