You could probably do somethig similar with this script:
http://www.dynamicdrive.com/dynamici...tabcontent.htm
it will give you the tabs like AOL's search box then just use differant forms in each of the tabs e.g.
HTML Code:
<ul id="searchtabs" class="shadetabs">
<li><a href="#" rel="News" class="selected">News</a></li>
<li><a href="#" rel="Web">Web</a></li>
<li><a href="#" rel="Images">Images</a></li>
</ul>
<div id="News" class="tabcontent">
<form action="search.php?category=news" method="get">
<input type="text" name="query">
<input type="submit" value="search">
</form>
</div>
<div id="Web" class="tabcontent">
<form action="search.php?category=web" method="get">
<input type="text" name="query">
<input type="submit" value="search">
</form>
</div>
<div id="Images" class="tabcontent">
<form action="search.php?category=images" method="get">
<input type="text" name="query">
<input type="submit" value="search">
</form>
</div>
Bookmarks