// we need to use "jQuery" instead of $ as prototype will be included by the fontsize changer ext
jQuery(document).ready(function(){ 

        jQuery('.pngfix').pngFix();
        
       	jQuery('.scroll-pane').jScrollPane();

        jQuery('.themendossiers li').mouseenter(function() {
            //jQuery('.themendossiers ul').show();
            jQuery(this).find('ul').show();
        });
        jQuery('.themendossiers li').mouseleave(function() {
            //jQuery('.themendossiers ul').hide();
            jQuery(this).find('ul').hide();
        });
});
