$(document).ready(function(){ // --------------------------------------------------------- // Tabs // --------------------------------------------------------- $(".tabs").each(function(){ $(this).find(".tab").hide(); $(this).find(".tab-menu li:first a").addClass("active").show(); $(this).find(".tab:first").show(); }); $(".tabs").each(function(){ $(this).find(".tab-menu a").click(function() { $(this).parent().parent().find("a").removeClass("active"); $(this).addClass("active"); $(this).parent().parent().parent().parent().find(".tab").hide(); var activeTab = $(this).attr("href"); $(activeTab).fadeIn(); return false; }); }); // --------------------------------------------------------- // Toggle // --------------------------------------------------------- $(".toggle").each(function(){ $(this).find(".box").hide(); }); $(".toggle").each(function(){ $(this).find(".trigger").click(function() { $(this).toggleClass("active").next().stop(true, true).slideToggle("normal"); return false; }); }); // --------------------------------------------------------- // Social Icons // --------------------------------------------------------- jQuery(".social-networks li a").tooltip({ effect: 'slide', position: 'bottom center', opacity: .5 }); jQuery('.meta-info .ico').each(function () { jQuery(this).hover(function(){ jQuery(this).find(".info-block").fadeTo(300, 1); }, function(){ jQuery(this).find(".info-block").fadeTo(50, 0).hide(); }); }); });