<?php
function sidebar_block($options)
{
	$templates = array();
	$templates[] = "sidebar.php";
	$sidebar_path = locate_template($templates, false);
	ob_start();
		require($sidebar_path);
		$output = ob_get_contents();
	ob_end_clean();	
	$block['sidebar'] = $output;								
	return $block ;	

}

?>