jQuery.fn.showHide = function() {
  return this.each(function(){
   		  this.hide(1000,function() {
				  this.show(1000,function() {
						  showHide(this);                                            
				  });
		  });;
  });
};
