Jquery ui tabs

Jquery ui tabs

hello. I'm using ui tabs to create a slideshow and I'm using  event: "mouseover" to change the slides but would like to also create a link from my li that when clicked goes to a separate page. I know the href used is pulling in the slides. Is it possible to pull from the li instead, so I can use the href to link to a page?

My code for the slideshow below.
  1. <section id="featured" >
  2. <div id="ui-tabs-container">
  3. <ul class="ui-tabs-nav">
  4. <li class="ui-tabs-nav-item ui-tabs-selected hide" id="nav-fragment-1"><a href="#fragment-1">
  5. <img src="-/img/slideshow/Welcome_image-th.jpg" alt="Welcome_image-th" width="75" height="55" />
  6.    <h3 class="title">All Your Woodworking Needs in One Shop</h3>
  7.    <p>Page through the list below to find out more about just some our services</p>
  8.    </a></li>
  9.  
  10.    <li class="ui-tabs-nav-item" id="nav-fragment-2"><a href="#fragment-2">
  11.    <img src="-/img/slideshow/pedistal_base-th.jpg" alt="pedistal_base-th" width="75" height="55" />
  12.    <h3>Taxidermy Displays</h3>
  13.    <p>Since 1922, Nippon Panels Co. has been creating quality wildlife panels. Make your trophy presentation distinct with a Nippon Panel. There is no substitute for a unique panel.</p>
  14.    </a></li>
  15.    
  16.    <li class="ui-tabs-nav-item" id="nav-fragment-3"><a href="#fragment-3">
  17.    <img src="-/img/slideshow/piano.jpg" alt="piano" width="75" height="55" />
  18.    <h3>Piano &amp; Furniture Restoration</h3>
  19.    <p>Our artisans are dedicated to the restoration &amp; preservation of heirloom furniture & collectibles; we are the area’s premier piano & organ restoration specialists.</p>
  20.    </a></li>
  21.    
  22.    <li class="ui-tabs-nav-item" id="nav-fragment-4"><a href="#fragment-4">
  23.    <img src="-/img/slideshow/Hughes-Kitchen.jpg" alt="Hughes-Kitchen" width="75" height="55" />
  24.    <h3>Custom Woodworking</h3>
  25.    <p>We know that our work will have to stand the test of time; the concept of pride from a job well done may seem &quot;old fashioned&quot;, but to us…it is the way we do business.</p>
  26.    </a></li>
  27.    
  28.    <li class="ui-tabs-nav-item" id="nav-fragment-5"><a href="#fragment-5">
  29.    <img src="-/img/slideshow/Orellie's-Shadow-Boxes-th.jpg" alt="Orellie's-Shadow-Boxes-th" width="75" height="55" />
  30.    <h3>Displays &amp; Awards</h3>
  31.    <p>We have the finest presentation awards on the market today because of our PA hardwoods & our attention to detail, we make your award perfect for your recipient.</p>
  32.    </a></li>
  33. </ul>
  34. </div>
  35. <div id="slides">
  36. <div id="fragment-1" class="ui-tabs-panel" style="">
  37. <img src="-/img/slideshow/Welcome_image.jpg" alt="Welcome_image" width="592" height="399" />
  38. </div>
  39. <div id="fragment-2" class="ui-tabs-panel ui-tabs-hide" style="">
  40. <img src="-/img/slideshow/pedistal_base.jpg" alt="pedistal_base" width="592" height="399" />
  41. <p><a class="lmore" href="/nippon-panels/displays-pedestals-bases.php" title="Click here to learn more">Learn More about our Taxidermy displays.</a></p>
  42. </div>
  43. <div id="fragment-3" class="ui-tabs-panel ui-tabs-hide" style="">
  44. <img src="-/img/slideshow/piano-lg.jpg" alt="piano-lg" width="592" height="399" />
  45. <p><a class="lmore" href="/vantique-furniture/piano-organ-restoration.php" title="Click here to learn more">Learn More About Piano &amp; Furniture Restoration </a></p>
  46. </div>
  47.    
  48.    <div id="fragment-4" class="ui-tabs-panel ui-tabs-hide" style="">
  49. <img src="-/img/slideshow/Hughes-Kitchen-lg.jpg" alt="Hughes-Kitchen-lg" width="592" height="399" />
  50. <p><a class="lmore" href="/vantique-furniture/kitchen-custom-refinishing.php" title="Click here to learn more">Learn More about Custom Woodworking</a></p>
  51. </div>
  52.    
  53.    <div id="fragment-5" class="ui-tabs-panel ui-tabs-hide" style="">
  54. <img src="-/img/slideshow/Orellie's-Shadow-Boxes.jpg" alt="Orellie's-Shadow-Boxes" width="592" height="399" />
  55. <p><a class="lmore" href="/nippon-panels/shadowboxes-awards.php" title="Click here to learn more">Learn More About Displays &amp; Awards</a></p>
  56. </div>
  57. </div>
  58. </section>
Jquery:
  1. $("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true).tabs({event: "mouseover"});
  2. $("#featured").hover(
  3. function() {
  4. $("#featured").tabs("rotate",0,true);
  5. },
  6. function() {
  7. $("#featured").tabs("rotate",5000,true);
  8. });