fade does not work on a certain DIV

fade does not work on a certain DIV

Hi,

I have a certain div i want to fade onclick, but it does nothing. Other divs fade fine. I get a javascript error in IE: invalid argument.

Here's the fade code:
$("#webdesign").click(function(){      
   $("#front").fadeOut("slow");
});   



And heres the div:
<div id="front">
   <img class="navbutton2" src="portfolio/webdesign_k.jpg" style="left:100px;top:150px;">
   <img class="navbutton" id="webdesign" src="portfolio/webdesign_z.jpg" style="left:100px;top:150px;">
</div>



Any idea what's wrong?

thanks!