i am calling up a tag cloud on one of my sites like so. 
	Quote:
	
	
		| 
			
				wp_tag_cloud('format=array' );
			
		 | 
	
	
 I need to call the tag list as an array to display it properly within my theme, however I would like to do a similar display of the categories. Calling categories into a cloud can be done like so...
	Quote:
	
	
		| 
			
				wp_tag_cloud( array( 'taxonomy' => 'category' ) );
			
		 | 
	
	
 So anyways, I need to mash these two together somehow, and everything I've been trying this morning has been pure failure. 
Any suggestions?