jQuery.fn.masque = function(classSelector)
{
    $(this).hover(
		function()
		{
    	    $(this).find(classSelector).stop().animate({height:'110px'},400);
	    },
		function () {
        	$(this).find(classSelector).stop().animate({height:'38px'}, 300);
	    }
	);
};


