function get_post_type_template($template = '') {
	if (is_singular() && (get_query_var('post_type') == 'facebook')) {
		$template = locate_template(array('facebook-single.php'));
	}
	return $template;
}
add_filter('template_include', 'get_post_type_template');
