[jQuery] JQuery calendar

[jQuery] JQuery calendar


Hi All can any one send me a demo of Jquery calendar
i wrote this code in html
<script type="text/javascript" src="/static_media/js/jquery.js"></
script>
<script type="text/javascript" src="/static_media/js/
ui.datepicker.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $(".menu a").hover(function() {
        $(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
    }, function() {
        $(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
    });
});
    $("#basics").datepicker();
</script>
<input type="text" size="10" value="click here" id="basics"/>
<style type="text/css">.embed + img { position: relative; left: -21px;
top: -1px; }</style>
its not giving me any function error but its not showing me calendar..
i do not know what i am doing wrong? if i could get any error then
could have rectified?