$('document').ready(function(){ /* SHOP NAV */ $("#jnav ul").hide(); $("#jnav li.cllr1bg ul.n2").show(); $("#jnav li.subactive ul").show(); $("#jnav li.cllr1bg span.gr1").html('-'); $("#jnav li.subactive span.gr2").html('-'); $("#jnav span.gr1").click(function() { var ico = $(this).html(); if(ico=='-') { $(this).html("+"); $(this).parents( "li" ).children("ul").hide(); $(this).parents( "li" ).removeClass('cllr1bg'); } else { $(this).html("-"); $(this).parents( "li" ).children("ul").show(); $(this).parents( "li" ).addClass('cllr1bg'); } }); $("#jnav span.gr2").click(function() { var ico = $(this).html(); if(ico=='-') { $(this).html("+"); $(this).parents( "li" ).children("ul.n3").hide(); } else { $(this).html("-"); $(this).parents( "li" ).children("ul.n3").show(); } }); /* LOGIN */ $('.LOGIN').magnificPopup({ type: 'iframe', callbacks: { close: function() { location.reload(); } } }); /* PRODUCT TABS */ hideTabs(); $("#btntabInfo").removeClass('cllr3bg cllr2txt'); $("#btntabInfo").addClass('cllr2bg tabactive'); $("#tabinfo").show(); $("#btntabInfo").click(function() { hideTabs(); $("#btntabInfo").removeClass('cllr3bg cllr2txt'); $("#btntabInfo").addClass('cllr2bg tabactive'); $("#tabinfo").show(); }); $("#btntabFiles").click(function() { hideTabs(); $("#btntabFiles").removeClass('cllr3bg cllr2txt'); $("#btntabFiles").addClass('cllr2bg tabactive'); $("#tabfiles").show(); }); $('.bigimg').magnificPopup({ type: 'image', }); $('.fancybox').magnificPopup({ type: 'image', gallery:{ enabled:true }, callbacks: { buildControls: function() { // re-appends controls inside the main container this.contentContainer.append(this.arrowLeft.add(this.arrowRight)); } } }); //$(function() { $( ".tooltip" ).tooltip(); //}); //INLINE POPUP $('.open-popup-link').magnificPopup({ type:'inline', midClick: true }); }); function hideTabs() { $(".tab").hide(); $(".tabbtn").removeClass('tabactive cllr2bg'); $(".tabbtn").addClass('cllr3bg cllr2txt'); }