$.fn.customFadeIn = function(speed, callback) { 
    $(this).fadeIn(speed, function() { 
        if(!$.support.opacity) 
            $(this).get(0).style.removeAttribute('filter'); 
        if(callback != undefined) 
            callback(); 
    }); 
}; 

