$(function(){
    $(document).pngFix(); 
    
    $('#product-tabs a').click(function(){
        $('#product-tabs li').removeClass('current');
        $(this).parent().addClass('current');
        
        $.ajax({
            type: "GET",
            url: $(this).attr('href'),
            beforeSend: function(){
                $('#product-content').hide();
                $('#loader').show();
            },
            success: function(data){
                $('#loader').hide();
                $('#product-content').html(data);
                $('#product-content').fadeIn();
            }
        });

        return false;
    });
       
});