Problem with jquery cycle plugin pagerEvent

Problem with jquery cycle plugin pagerEvent

Somehow my pagerEvent:'mouseover' stopped working. Can anyone suggest a way to get my mouseover to start working again?
  1. <div id="slideshowContainer" style="width:247px;">
  2.         <div id="slideshow" class="slideshowPics"> <a href="/productcatalog.asp?directoryid=10688"><img src="images/homeProductCategoryBakeryCases.jpg" alt="Acrylic&nbsp;Bakery&nbsp;Cases" width="218" height="190" border="0" /></a> <a href="/productcatalog.asp?directoryid=10697"><img src="images/homeProductCategoryFoodBins.jpg" alt="Acrylic Food Bins" width="218" height="190" border="0" /></a> <a href="/productcatalog.asp?directoryid=10691"><img src="images/homeProductCategoryBeverage.jpg" alt="Beverage Accessory Items" width="218" height="190" border="0" /></a> <a href="/productcatalog.asp?directoryid=10698"><img src="images/homeProductCategoryOrganizers.jpg" alt="Organizers &amp; Condiment Caddies" width="218" height="190" border="0" /></a> <a href="/productcatalog.asp?directoryid=10694"><img src="images/homeProductCategoryLiterature.jpg" alt="Literature &amp; Sign Holders" width="218" height="190" border="0" /></a> <a href="/productcatalog.asp?directoryid=10701"><img src="images/homeProductCategoryCleaning.jpg" alt="Plastic Cleaning Products" width="218" height="190" border="0" /></a> <img src="images/homeProductCategoryNewProducts.jpg" alt="New Products" width="218" height="190" /> </div>
  3. <ul id="nav">
  4.         <li><a href="/productcatalog.asp?directoryid=10688">Acrylic Bakery Cases</a></li>
  5.         <li><a href="/productcatalog.asp?directoryid=10697">Acrylic Food Bins</a></li>
  6.         <li><a href="/productcatalog.asp?directoryid=10691">Beverage Accessory Items</a></li>
  7.         <li><a href="/productcatalog.asp?directoryid=10698">Organizers &amp; Condiment Caddies</a></li>
  8.         <li><a href="/productcatalog.asp?directoryid=10694">Literature &amp; Sign Holders</a></li>
  9.         <li><a href="/productcatalog.asp?directoryid=10701">Plastic Cleaning Products</a></li>
  10.         <li><a href="/new_products.asp">New Products</a></li>
  11.       </ul>      </div>


  1. jQuery('#slideshow').cycle({
  2. speed: 500,
  3. timeout: 500, 
  4. fx: 'scrollDown',
  5. pager:   '#nav', 
  6. pause:   true,
  7. pagerEvent: 'mouseover',  
  8. allowPagerClickBubble: true,
  9.         pagerAnchorBuilder: function(idx, slide) {
  10.             return '#nav li:eq(' + (idx) + ')';
  11.         }
});

Thanks!