jQuery.fn.fadeAndHide=function(speed){
	return $(this).animate({
		height: 'hide',
		opacity: 'hide'
	}, speed);
}
jQuery.fn.fadeAndShow=function(speed){
	return $(this).animate({
		height: 'show',
		opacity: 'show'
	}, speed);
}