I hate to ask such a basic question, but I am having a hard time finding solid examples online. I'm green to all of this.
I have the following HTML Page:
<!DOCTYPE html>
<html lang="en">
<head>
 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" >
  $(function (Function1() {
   alert('Hello from JavaScript!');
  }));
 </script>
</head>
<body>
<div class="container">
    <button onclick="Function1()">
        Click me!
    </button>
</div>
</body>
</html>
I receive the following error in the chrome console on click:
Uncaught ReferenceError: Function1 is not defined
It has to be something obvious, but I don't know why my function call isn't working. I must have some kind of JQuery specific syntax wrong.

