$(document).ready(function(){
	$(".hide").css("paddingTop","1px").hide();
	$(".hidetoggle").click(function(){
		var getit = $(this).attr("id").replace("t_","");
		$(this).fadeOut(600);
		$("#" + getit).slideToggle(600);
		return false;
	});
});