function customFadeIn(object,speed){
	
	$(object).fadeIn(speed);
	
}
function customFadeOut(object,speed){
	
	$(object).fadeOut(speed);
	
}