jQuery.fn.fadeToggle = function(speed, easing, callback) {
	return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);  
};
this.tectruncate = function(){
	$(".tip").hide(), 	$(".tip_tab").removeClass("open");
	$(".tip_tab").click(function(){
		$(this).toggleClass("open");
		$(this).next(".tip").fadeToggle(1500);
		return false;
	});
};
$(document).ready(function(){
	tectruncate();
});
