jQuery isn't loading by default

My understanding is that jQuery is already loaded within ScriptCase, but I’m not sure it’d doing so for me. I’ve created a Blank application with the following and jQuery doesn’t produce any errors, but also doesn’t “do” anything. If I remove the call to jquery-1.11.1.min.js, I get an error that jQuery isn’t loaded. What am I doing wrong here?

?>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<!-- <script src="<?php echo sc_url_library('prj', 'jquery-test', 'jquery-test.js'); ?>"></script> -->
<script type="text/javascript">
$("p").bind("click", function(){
   $( "<div>This is a click Event</div>").appendTo( "body" );
});

$("p").bind("dblclick", function(){
   $( "<div>This is a double-click Event</div>"  ).appendTo( "body" );
});
</script>
			
  <meta charset="utf-8">
  <title>Test if jQuery is loaded</title>
</head>
<body>
<p>Click me!</p>
</body>
</html>

<?php

Sorry, I pasted the wrong example as it was at the end of a long day. Please ignore and I’ll create a new post with this issue.