$(function(){
	$('#feature img').each(function(){
		$(this).addClass('loading')
			.load(function(){
				$(this).removeClass('loading');
			});
	});

	if ($('#home').size() > 0)
		$("#home #panel").pngFix();
});