jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
  return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);  
};

$(document).ready(function() {
  $('#fade').click(function() {
    $(this).next().slideFadeToggle('slow', function() {
      var $this = $(this);
    });
  });
});

/*$(document).ready(function() {
  $('#fade').click(function() {
    $(this).next().fadeToggle('slow');
  });
});*/


/*$(function () {
             $("#btn").click(function () {
                 $("#jobcontent").fadeToggle("slow", "linear");
             });
         });*/
