jQuery.noConflict()(function($){ /* =============================================== Overlay =============================================== */ $('.blog-grid div.pin-article').live('mouseover',function(){ var imgw = $('.overlay',this).prev().width(); var imgh = $('.overlay',this).prev().height(); $('.overlay',this).css({'width':imgw,'height':imgh}); $('.overlay',this).animate({ opacity : 0.9 },{queue:false}); }); $('.blog-grid div.pin-article').live('mouseout',function(){ $('.overlay', this).animate({ opacity: 0}, { queue:false }); }); /* =============================================== MASONRY =============================================== */ function wip_masonry() { if ( $(window).width() > 768 ) { $('#masonry').imagesLoaded(function () { $('#masonry').masonry({ itemSelector: '.pin-article', isAnimated: true }); }); } else { $('#masonry').masonry( 'destroy' ); } } $(window).resize(function(){ wip_masonry(); }); $(window).load(function($){ wip_masonry(); }); });