function filterContacts(filter_by){
	$(".col").removeClass("glow");
	$(".col").addClass("fillin");
	$(filter_by).removeClass("fillin");
	$(filter_by).addClass("glow").fadeIn("slow");
	if (!$(filter_by)){
		$(".col").fadeOut("slow");
	}
} 