$(function(){ Shadowbox.init(); $('.mini-gallery img').each(function(){ $(this) .attr('data-src', $(this).attr('src')) .attr('src', '') .css('display', 'none') .on('load', function(){ $(this).fadeIn(500); }) .attr('src', $(this).attr('data-src')); }); $('.highlight') .hover( function(){ var class_cluster = null; if( $(this).is('.highlight-css') ) { class_cluster = '.highlight-css'; } else if( $(this).is('.highlight-javascript') ) { class_cluster = '.highlight-javascript'; } else if( $(this).is('.highlight-html') ) { class_cluster = '.highlight-html'; } else if( $(this).is('.highlight-php') ) { class_cluster = '.highlight-php'; } if( class_cluster ) { $(class_cluster).addClass('highlighted'); } }, function(){ $('.highlight').removeClass('highlighted'); } ); })