// JavaScript Document
(function($){$.fn.customFadeIn=function(speed,callback){$(this).fadeIn(speed,function(){if(!jQuery.support.opacity)
$(this)[0].style.removeAttribute('filter');if(callback!=undefined)
callback();});};$.fn.customFadeOut=function(speed,callback){$(this).fadeOut(speed,function(){if(!jQuery.support.opacity)
$(this)[0].style.removeAttribute('filter');if(callback!=undefined)
callback();});};})(jQuery);
