$(document).ready(function () { if (jQuery.browser.msie && parseInt(jQuery.browser.version, 10) < 7) { $('ul.sf-menu').superfish({ delay: 400, animation: { height: 'show' }, speed: 275 }) } else { $('ul.sf-menu').supersubs({ minWidth: 12, maxWidth: 27, extraWidth: 0 }).superfish({ delay: 400, animation: { height: 'show' }, speed: 275 }) } // NivoSlider $('#nivoslider').nivoSlider({ effect:'fade', //Specify sets like: 'fold,fade,sliceDown' slices:6, animSpeed:500, pauseTime:5000, pauseOnHover:true, startSlide:0, //Set starting Slide (0 index) directionNav:true, //Next & Prev directionNavHide:false, //Only show on hover controlNav:false, //1,2,3... controlNavThumbs:false, //Use thumbnails for Control Nav controlNavThumbsFromRel:true, //Use image rel for thumbs controlNavThumbsSearch: '.jpg', //Replace this with... controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src keyboardNav:true, //Use left & right arrows pauseOnHover:true, //Stop animation while hovering manualAdvance:false, //Force manual transitions captionOpacity:0.8, //Universal caption opacity beforeChange: function(){}, afterChange: function(){}, slideshowEnd: function(){} //Triggers after all slides have been shown }); // QUICK CONTACT TOGGLE $('#bottom-widgets-container').hide(); $('#toggle-bottom-widgets-container').click(function() { $('#bottom-widgets-container').toggle(); $('#bottom-widgets').toggleClass('active'); //return false; }); // COLLAPSIBLE $('div.collapsible-content').hide(); $('div.collapsible h2').click(function() { $(this).parent().find('div.collapsible-content').slideToggle('fast'); return false; } ); // PORTFOLIO $('div.portfolio-img div.overlay').hide(); $('div.portfolio-img').hover( function () { $(this).find('div.overlay' ).fadeTo('slow', 0.5); //$(this).parent().parent().find('div.portfolio-data').slideDown(); }, function () { $(this).find('div.overlay' ).fadeTo('fast', 0); //$(this).parent().parent().find('div.portfolio-data').slideUp(); }); $("a[rel^='prettyPhoto']").prettyPhoto({theme: 'light_rounded'}); });