// JavaScript Document
$(window).load(function(){ 
	$('img.nq_defer_load').each(function(j){ 
		$(this).attr('src',$(this).attr('needed'));
		$(this).attr('needed','');
	});
});
