$(function() {
	$("a[rel]").overlay({
	  mask: '#fff',
	});
	
	$('.more').click(function(){
		$(this).parent().children('.expand').show();
		$(this).hide();
		return false;
  });
});
