<html>
<head>
<title>Instant Search</title>
<link rel="stylesheet" type="text/css" href="presentation.css" />
</head>
<body>
<h1>Hello, World!</h1>
<script type="text/javascript" src="behavior.js"></script>
</body>
</html>
body { background-color:yellow; }
var SEARCH = function() {
var $ = {};
return {
init : function() {
SEARCH.doStuff();
},
doStuff : function() {
alert('ding!');
}
};
}();
window.onload = function() {
SEARCH.init();
};