$(document).ready(function(){
	/*
$("img").lazyload({
		effectspeed: 1,
		effectCallback: function() {
			var t = $(this); //alert('H: '+t.height()+'; W: '+t.width()); return false;
			console.log('W: '+t.width()+'; H: '+t.height());
			$(this).bind('recenter', function() {
				$(this).css('margin-top', (t.height() / 2) + 'px');
				$(this).css('margin-left', (t.width() / 2) + 'px');
			});
		}
	});
*/
	$('table.products:empty').each(function() {
	    $h2 = $(this).prev('h2');
	    anchor_name = $h2.find('a').attr('name');
	    $anchor_link = $('#jump_to').find('a[href=#'+anchor_name+']');
	    $anchor_link.prev('span.pipe').andSelf().remove();
	    $h2.remove();
	    $(this).remove();
	});
});
