jQuery.noConflict(); jQuery(function($) { bgl = function(){ $('.news-pgl-gpn').click(function(e){ e.preventDefault(); var imo = $('.news-pgl-int.active img').attr('src'); imo = imo.substr(imo.lastIndexOf('/')); imo = imo.substr(0,imo.lastIndexOf('?')); nxt = $('.news-pgl-int.active').next(); $('.news-pgl-int').removeClass('active'); nxt.addClass('active'); var imn = $('.news-pgl-int.active img').attr('src'); imn = imn.substr(imn.lastIndexOf('/')); imn = imn.substr(0,imn.lastIndexOf('?')); $('.news-pgl-main a[href*="'+imo+'"]').hide(); $('.news-pgl-main a[href*="'+imn+'"]').show(); $('.news-pgl-title').text(nxt.children('img').attr('title')); if ($('.news-pgl-int:first').hasClass('active')) { $('.news-pgl-gpp').hide(); $('.news-pgl-gpn').show(); } else if ($('.news-pgl-int:last').hasClass('active')) { $('.news-pgl-gpn').hide(); $('.news-pgl-gpp').show(); } else { $('.news-pgl-gpp, .news-pgl-gpn').show(); } }); $('.news-pgl-gpp').click(function(e){ e.preventDefault(); var imo = $('.news-pgl-int.active img').attr('src'); imo = imo.substr(imo.lastIndexOf('/')); imo = imo.substr(0,imo.lastIndexOf('?')); nxt = $('.news-pgl-int.active').prev(); $('.news-pgl-int').removeClass('active'); nxt.addClass('active'); var imn = $('.news-pgl-int.active img').attr('src'); imn = imn.substr(imn.lastIndexOf('/')); imn = imn.substr(0,imn.lastIndexOf('?')); $('.news-pgl-main a[href*="'+imo+'"]').hide(); $('.news-pgl-main a[href*="'+imn+'"]').show(); $('.news-pgl-title').text(nxt.children('img').attr('title')); if ($('.news-pgl-int:first').hasClass('active')) { $('.news-pgl-gpp').hide(); $('.news-pgl-gpn').show(); } else if ($('.news-pgl-int:last').hasClass('active')) { $('.news-pgl-gpn').hide(); $('.news-pgl-gpp').show(); } else { $('.news-pgl-gpp, .news-pgl-gpn').show(); } }); $('.news-pgl-int').click(function(e){ e.preventDefault(); if ($(this).hasClass('active')) return false; var imo = $('.news-pgl-int.active img').attr('src'); imo = imo.substr(imo.lastIndexOf('/')); imo = imo.substr(0,imo.lastIndexOf('?')); nxt = $(this); $('.news-pgl-int').removeClass('active'); nxt.addClass('active'); var imn = $('.news-pgl-int.active img').attr('src'); imn = imn.substr(imn.lastIndexOf('/')); imn = imn.substr(0,imn.lastIndexOf('?')); $('.news-pgl-title').text(nxt.children('img').attr('title')); $('.news-pgl-main a[href*="'+imo+'"]').hide(); $('.news-pgl-main a[href*="'+imn+'"]').show(); if ($('.news-pgl-int:first').hasClass('active')) { $('.news-pgl-gpp').hide(); $('.news-pgl-gpn').show(); } else if ($('.news-pgl-int:last').hasClass('active')) { $('.news-pgl-gpn').hide(); $('.news-pgl-gpp').show(); } else { $('.news-pgl-gpp, .news-pgl-gpn').show(); } }); } });