hide function from ie6

hide function from ie6

I've got a need to hide a function from ie6 (long story).  Does anyone know how I can target that browser and stop the rest of the script from processing?

I looked at using jQuery.support but am not able to find a test that returns false for ie6 only. I want to wrap my function in some type of conditional that stops ie6 in it's tracks but all other browsers can process.  Something like this:
if($.browser.msie && $.browser.version=="6.0")
// DO NOTHING
else


// PROCESS THE FUNCTION AS NORMAL