$(document).ready(function(){
    $('#product-about-list a').click(function(event){
        event.preventDefault();
        $('#intro:visible').hide();
        $('div.article:visible').hide();
        $($(this).attr('href')).show('slide');
    });
    
    $("#gallery a").fancybox({
        'titlePosition' : 'over',
        'centerOnScroll' : true
    });
});
