Using fadeOut method

Using fadeOut method

Hi
This works fine on a normal button but not on one that runs at server i.e <asp:Button ID="btn1" runat="server"

   <script type="text/javascript">
    $(function() {
        $("#btn1").hover(function(){
        $("#location").fadeOut("normal");
        });
    });
    </script>

How can I make it work?
thanks
D