/* main entry point, called when the DOM is loaded */
jQuery(document).ready(function() {
    
    // ie6 png transparency
    if ($.browser.msie && $.browser.version == '6.0') {
        DD_belatedPNG.fix('');
    }

    // fade in text blocks so they appear with flash animations
    $('.jscrollpane').fadeIn(2500, function() {
        $(this).css('padding', '0');
        $(this).jScrollPane({
            scrollbarWidth: 14,
            scrollbarMargin: 14,
            showArrows: true
        });
    });

    // Cufon fonts replacements
    Cufon.replace('#navigation > ul > li > a', {hover: true});
    Cufon.replace('#content-left-text h2, #navigation span');
    Cufon.replace('#container_404 h2');
});

