Php code /css code help

im kind of developing a replica of this http://www.uconn.edu/map/ map but remain with one task and that is the menu system .i need php backend and css formatiing code to finisih it off .check out this code .
could any php star be of help to me pliz …

//The error is with the “//css.swf” that is missing and check out the “php code” as the backend okay

function db_search(query)
{
myVars = new LoadVars();
created = new LoadVars();
created.q = query;
myVars.load("/classes/query.php?" + created.toString());
myVars.onLoad = function ()
{
newQuery.html = true;
num_results = Number(myVars.num);
if (num_results > 0)
{
newQuery.htmlText = “”;
var x = 0;
while (x < num_results)
{
newQuery.htmlText = newQuery.htmlText + ("<li><a href=“asfunction:find,” + (eval(“myVars.code” + x)) + “”

style=“font-size:10px;”>" + (eval(“myVars.name” + x)) + "</a></li>
");
++x;
} // end while
}
else
{
newQuery.htmlText = “Your search for <b>’” + query + "’</b> produced NO results,please try twisting or

interchanging some other words";
} // end else if
};
return;
} // End of the function