why doesn't my show() function work?

why doesn't my show() function work?

This is what I have for jquery:
  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  2. <script>
  3. $(document).ready(function(){
  4.     $get("a.project").click(function() {
  5.         $("#page-wrap").fadetoggle("slow");
  6.     });
  7. });
  8. </script>
This is what I want to show:
  1. <div id="page-wrap" style="display:none;">
    <div id="transparency"></div>
            <div id="img-wrap">
                <img src="img/project1.png" width="900" height="600" />
            </div>
    </div>




I want it to show in the same window on top of my other content. When I remove "display:none;" it shows it like I want it.