Помогите найти ошибку, див с id my должен стать драгабл но не становится...
<!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" />
<title>Веб страница</title>
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<style type="text/css">
#my {
background-color: #FF0;
position: absolute;
height: 75px;
width: 100px;
left: 204px;
top: 169px;
padding: 5px;
vertical-align: baseline;
text-align: center;
cursor: move;
border: 1px solid #000;
}
</style>
<script type="text/javascript" >
$(document).ready(function(){
$("#my").draggable();
});
</script>
</head>
<body>
<div id="my">Панель 1</div>
</body>
</html>