I've made a jQuery menu in JSfiddle but when pasting to Dreamweaver it doesn't work. Could it be some syntax error? Could it be that I´ve made a mistake?

I've made a jQuery menu in JSfiddle but when pasting to Dreamweaver it doesn't work. Could it be some syntax error? Could it be that I´ve made a mistake?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery-1.7.2.js"></script>
    <script type="text/javascript">
jQuery(function($) {
$(document).ready(function() {
$('#panelHandle').click(function() {
jQuery.noConflict();
if ($('#sidePanel').offset().left < 0) {
 $('#sidePanel').stop(true, false).animate({
'left': '0px'
 }, 900);
} else {
jQuery('#sidePanel').animate({
 left: '-201px'
  }, 800);
  }
 });

 });
});​
</script>
<style type="text/css">
body{
    font-family:Arial;
}

#sidePanel{
    width:245px;
    position:fixed;
    left:-202px;
    top:15%;
    
}
#panelHandle{
    background-image: -webkit-linear-gradient(top,#333,#222);
    background-image: -moz-linear-gradient(center top , #333333, #222222);
    background-image: -o-linear-gradient(center top , #333333, #222222);
    background-image: -ms-linear-gradient(center top , #333333, #222222);
    background-image:linear-gradient(center top , #333333, #222222);

    height:250px;
    width:40px;
    border-radius:0 5px 5px 0;
    float:left;
    cursor:pointer;
}
#panelContent{
    float:left;
    border:1px solid #333333;
    width:200px;
    height:250px;
    background-color:#EEEEEE;
}

#panelHandle p {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
    left: -4px;
    margin: 0;
    padding: 0;
    position: relative;
    top: 26px;
border:1px red dotted;
}

 </style>
</style>
<title>Untitled Document</title>
</head>

<body>
<div id="sidePanel">
<div id="panelContent">
<ul>
<li><a href="../index.html" target="_self"><br />
Inicio</a><br />
<br />
</li>
<li><a href="#">Apresentação</a><br />
<br />
</li>
<li><a href="../../hiperfilme/site/index.html" target="_self">Arquitetura</a><br />
<br />
</li>
<li><a href="#">Tecnologia</a><br />
<br />
</li>
<li><a href="#">Contactos</a></li>
</ul>
</div>
<div id="panelHandle"><p>MENU</p></div>

</div>​
</body>
</html>