//  PRODUCT SPECIFICATIONS TABS
jQuery(document).ready(function(){
    //  When user clicks on tab, this code will be executed
    jQuery("#tabs li").click(function() {
        //  First remove class "active" from currently active tab
        jQuery("#tabs li").removeClass('active');
 
        //  Now add class "active" to the selected/clicked tab
        jQuery(this).addClass("active");
 
        //  Hide all tab content
        jQuery(".tab_content").hide();
 
        //  Here we get the href value of the selected tab
        var selected_tab = jQuery(this).find("a").attr("href");
 
        //  Show the selected tab content
        jQuery(selected_tab).fadeIn();
 
        //  At the end, we add return false so that the click on the link is not executed
        return false;
    });
});

