Yeah, use CSS 
Say you give the A elements on the left a class of Mint, and the elements on the right a class of Farah, then in the style tag in the head, you'd write something like
Code:
.Mint a:link {color: #00ffff; /* plus other styles you want to set */ }
.Mint a:visited { /* ... */ }
.Mint a:hover { /* ... */ }
.Mint a:active ( /* ... */ }
.Farah a:link { /* ... */ }
/*
...etc
*/
to set up different styles for the A tag depending on their class. Replace the comments with useful CSS obviously
I think that's how it works anyway 
EDIT: You can actually look at the source code for EoFF to see how it works too