$(document).ready(function() {
    //When page loads...
    $(".block_tab").hide(); //Hide all content
    $(".tabs span:first").addClass("rounded").show(); //Activate first tab
    $(".block_tab:first").show(); //Show first tab content

    //On Click Event
    $(".tabs span").click(function() {

        $(".tabs span").removeClass("rounded"); //Remove any "rounded" class
        $(this).addClass("rounded"); //Add "rounded" class to selected tab
        $(".block_tab").hide(); //Hide all tab content

        var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the rounded tab + content
        $(activeTab).fadeIn(); //Fade in the rounded ID content
        return false;
    });
    
    $(".product_img a, .thumbs").fancybox({
        'titleShow'     : false,
        'autoScale'     : false,
        'transitionIn'  : 'elastic',
        'transitionOut' : 'elastic',
        'speedIn':700,
        'speedOut':700
    });


    
});
