/* ======================================= Single JS ========================================== */ (function($){ // start jquery $(function(){ /* prettyPhoto(WordPress) ========================================== */ var Obj = $('#main .sectionWrap .sectionWrapInner'); $('img[class^="align"], div[id^="attachment"] a img', Obj).each(function(){ $(this).removeAttr('title') .parent('a') .removeAttr('title') .addClass('popupLink') .prettyPhoto({ show_title: false, theme: 'dark_rounded', animation_speed: 'normal' }); }); }); })(jQuery); // end jquery