Link Hover Effects With jQuery

The HTML structure for each menu is as follows:

<!-- #menu2 menu-wrapper begins -->
<div id="menu2" class="menu-wrapper">
    <div class="menu">
	    <ul>
		    <li> <a href="#"> Hyperlink </a> <em> This is a hyperlink </em> </li>
		    <li> <a href="#"> Hyperlink </a> <em> This is a hyperlink </em> </li>
		    <li> <a href="#"> Hyperlink </a> <em> This is a hyperlink </em> </li>
		    <li> <a href="#"> Hyperlink </a> <em> This is a hyperlink </em> </li>
	    </ul>
    </div>
</div>
<!-- menu-wrapper ends -->

We have already hidden the <em> element using jQuery to achive fine results:

$(' .menu em ').hide();

Lets have a look at the first menu