//
// JQUERY PLUGINS
//

jQuery.fn.showObj = function(speed) {
  if(!speed){speed=500};
  return this.each(function() {
    $(this).css('display','none');
    $(this).slideDown(speed,function() {$(this).fadeTo(speed,1)});
  });
 
};

jQuery.fn.hideObj = function(speed) {
  if(!speed){speed=500};
  $(this).fadeTo(speed, 0.01, function() {$(this).slideUp(speed)});
};


//$('body.not-logged-in.node-type-article div.field-type-filefield').html('<p class="login-warn">Please <a href="/user">log in</a> to view the whole item.<br/> First time? <a href="/user/register">Sign up</a>.');
//$('body.not-logged-in.node-type-article div.field-type-filefield').showObj();

