(function($)
{
	// $.fn is the object we add our custom functions to
	$.fn.weazleGadget = function()
	{
		return this.each(function()
		{
			$(".moveUp").mouseover(function(event){
				$(this).animate({top: '-=20'}, 300);
			});
			
			$(".moveUp").mouseout(function(event){
				$(this).animate({top: '+=20'}, 300);
			});	
		});
	};
})(jQuery);
