// JavaScript Document
jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
  return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);  
};

$(document).ready(function() {
  $('#masX').click(function() {
	$('#fragmentX').slideFadeToggle('slow');
  });
  
});
