Well what will they be searching for ?
Does your server support php ?
I do not see anything to search for you have a hand full of pages.
It would not take me any longer to click the pages you have then to type in something to search.
You could make a small php script that loads the html in to its memory then search the text if the text is there it could show the page but if someone searches and the it will be in every page.
If you make a list of words in an array search the words and then if found in the array print the link to send them to.
only example code.
[php]$my_array(‘money’,‘banking’,‘property’);
$my_other_array(‘letter’,‘paper’,‘news’,‘giberish’)
$search= $_POST[‘search’];
if (in_array($my_array, $search)){
echo ‘found on page Investments’;
}else if (in_array($my_other_array, $search)){
echo ‘found on page Banking’;
}else{
echo ‘nothing found’;
}
[/php]