jQuery(function(){
  jQuery(".product-tab > span, .product-tab > li").click(function(){
    jQuery(this).addClass("current").siblings("span, li").removeClass("current");
    jQuery(".product-panel").removeClass("current").filter("[id='" + this.id + "']").addClass("current");
  });

  jQuery("select, input:checkbox, input:radio, input:file").uniform();

  jQuery("a.isAjax").fancybox({
    'transitionIn'	: 'fade',
    'transitionOut'	: 'fade',
    'centerOnScroll' : true
  });
  
  jQuery("a.isNewTab").click(function(e){
    e.preventDefault();
    if (e.isDefaultPrevented()) {
      window.open(this.href, 'newWindow');
    }
  });

});

