Really Bare-bones Jquery?

Really Bare-bones Jquery?

Wondering if anyone knows a way to get just the bare-bones of jquery.

Basically the version I'm using is around 55kb, but I'm only using 4 basic functions, fadein, fadeout, show, and hide..

It just seems a waste to be loading the full 55kb jquery library when I am only using probably 1/100th of it.

Anyone have any ideas?

For reference here is the only code I'm using (substitute show/hide for the ie version):

var $j = jQuery.noConflict();

$j(document).ready(function()
{
  $j(".shadow-cover").mouseover(function()
{
$j(this).fadeOut("fast");
});
});

$j(document).ready(function()
{
  $j(".piece-frame").mouseout(function()
{
$j(".shadow-cover").fadeIn("fast");
});
});