ACC SHELL
jQuery(function($){
$(document).ready(function(){
// superFish
$("ul.sf-menu").superfish({
autoArrows: false,
animation: {opacity:'show',height:'show'}
});
// back to top
$('a[href=#toplink]').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
// portfolio
$('.portfolio-item').hover(function(){
$(this).find("img").stop().animate({opacity:'0.8'}, 100);
$(this).find(".portfolio-overlay").stop(true, true).fadeIn("normal"); }
,function(){
$(this).find("img").stop().animate({opacity:'1'}, 100);
$(this).find(".portfolio-overlay").stop(true, true).fadeOut("fast");
});
}); // END doc ready
}); // END function
ACC SHELL 2018