$(document).ready(function(){ // Target your .container, .wrapper, .post, etc. $(".moviecol").fitVids(); }); $(function(){ $(".spotmenu h3").on("click", function() { $(this).next().slideToggle(); $(this).toggleClass("active"); }); $('a img.imghover').hover(function(){ $(this).attr('src', $(this).attr('src').replace('_off', '_on')); }, function(){ if (!$(this).hasClass('currentPage')) { $(this).attr('src', $(this).attr('src').replace('_on', '_off')); } }); });