jQuery.fn.fadeToggle = function(speed, easing, callback) { 
   return this.animate({opacity: 'toggle'}, speed, easing, callback); 
}; 

function toggle_object(id) {
	$("#" + id).fadeToggle();
}
