I use a bookmarklet as a shortcut to Google search. Pretty handy.
- Bookmark anything, this page even, and call it "search site"
- Edit the bookmark and replace the url with:
javascript:q = "" + (window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRang
e().text); if (!q) q = prompt("You didn't select any text. Enter a search phrase:", ""); if (q!=null) location=("
http://www.google.com/search?num=100&q=site:" + escape(location.hostname) + " \"" + escape(q.replace(/\"/g,"")) + "\"").replace(/ /g, "+"); void 0
Now when you click that bookmark a box will pop-up and you can enter a search term and Google will search whatever site you're on. Or if you had highlighted text it will search the site for the highlighted text.