$(document).ready(function(){

  $("#col3 #subscribe li img").mouseover(
  	  
    function () {
        $(this).stop();
        $(this).css({'z-index' : 100, 'top' : 0, 'left' : 0, 'width' : 48}).animate({
        		left: "-=24",
        		top: "-=24",
                width: 96
        }, 'fast');
    }

  ).mouseout(
  	  
    function () {
    	$(this).stop();
        $(this).css({'z-index' : 0}).animate({
        		left: 0,
        		top: 0,
                width: 48
        }, 'fast');
    }

  );
  
  $(".post img").lazyload({
		effect:"fadeIn",
		placeholder: "http://aext.net/wp-content/themes/aext/images/grey.gif",
		failurelimit : 200,
		threshold : 800
  });

});