$(function() { $("#slides").slides({ preload: true, preloadImage: "http://mzwrites.com/wp-content/themes/echo/images/layout/loading.gif", play: 5000, pause: 3450, hoverPause: true, container: 'slides-container', pagination: true, generatePagination: true, fadeSpeed: 350, slideSpeed: 350, autoHeight: false, autoHeightSpeed: 350, effect: "fade, fade", crossfade: true, randomize: false, start: 1, animationStart: function() { $('.caption').animate({ height: 0 }, 100); }, animationComplete: function() { $('.caption').animate({ height: 50 }, 200); }});});$(document).ready(function() { var $navLinksDiv= $('#next-prev-links'); if(Modernizr.opacity) { $('#slides').hover(function() { $navLinksDiv.fadeTo(200, 1); }, function() { $navLinksDiv.fadeTo(200, 0); });} else { $('#slides').hover(function() { $navLinksDiv.css('visibility', 'visible'); }, function() { $navLinksDiv.css('visibility', 'hidden'); });} });