One big problem that I see is in your array creation.
Code:
$repl =array(
array(
You are making a 2 dimensional array. This is not necessary. Just take one of those out, and be sure to take out the matching parenthesis.
Next, you are searching for escaped quotes...
Code:
'<td class=\"vbmenu_control\">...
The only reason for escaping the quote symbol is if you START/END the string with a quote. You start the string with an apostrophe (see the blue ' at the beginning?).
So what you should do is either change the first/last apostrophe to a quote (") or get rid of all of the backslash escapes before the " in what you're looking for.