// JavaScript Document
/*
Controls the menus

*/

function adjustSideBars(id){
	//hiding the tab side bar
	if(	document.getElementById(id) && document.getElementById(id).style.display ==	'block'	){
		document.getElementById(id).style.height	=	0;
		document.getElementById(id).style.display =	'none';		

		document.getElementById('location_button').style.backgroundPosition	=	'0 -344px';			
		document.getElementById('sidebar_location_header').style.marginBottom=	'10px';						
		
		document.getElementById('twitter_button').style.backgroundPosition	=	'0 -344px';					
		document.getElementById('sidebar_twitters_header').style.marginBottom=	'10px';						
		
		/*
		document.getElementById('tab_holder_td').style.width==	'0px';						
		document.getElementById('map_holder_td').style.width=	'958px';	
		document.getElementById('map_canvas').style.width=	'958px';													
		*/
		return;
	}
	menu_headers_height = 5;
	total_height = ((document.getElementById('all_my_sidebars').style.height.replace(/px/,"")*1))

	//document.getElementById('sidebar_search_content').style.height	=	0;
	//document.getElementById('sidebar_search_content').style.display =	'none';	
	document.getElementById('sidebar').style.height	=	0;
	document.getElementById('sidebar').style.display =	'none';		
		document.getElementById('sidebar_location_header').style.marginBottom=	'10px';						
	document.getElementById('location_button').style.backgroundPosition	=	'0 -344px';	
	//document.getElementById('google_content').style.height	=	0;
	//document.getElementById('google_content').style.display =	'none';			
	document.getElementById('twitters_content').style.height	=	0;	
	document.getElementById('twitters_content').style.display =	'none';		
	document.getElementById('twitter_button').style.backgroundPosition	=	'0 -344px';													
	document.getElementById('sidebar_twitters_header').style.marginBottom=	'10px';						
	
	
	switch(id){
		case 'sidebar' 					: 	
											document.getElementById('sidebar').style.height = 400;		
											//document.getElementById('sidebar').style.height = total_height - menu_headers_height ;
											document.getElementById('sidebar').style.display =	'block';	
											document.getElementById('location_button').style.backgroundPosition	=	'0 -322px';	
											document.getElementById('sidebar_location_header').style.marginBottom=	'0px';		
											/*
											document.getElementById('tab_holder_td').style.width==	'291px';						
											document.getElementById('map_holder_td').style.width=	'638px';	
											document.getElementById('map_canvas').style.width=	'638px';													
											*/
											break;
		/*case 'sidebar_search_content'	: 	document.getElementById('sidebar_search_content').style.height= total_height - menu_headers_height ;
											document.getElementById('sidebar_search_content').style.display =	'block';							
											break;*/
		/*
		case 'facebook_content'			: 	document.getElementById('google_content').style.height= total_height - menu_headers_height;
											document.getElementById('google_content').style.display =	'block';									
											break;			
		*/
		case 'twitters_content'			: 	document.getElementById('twitters_content').style.height= total_height - menu_headers_height ;
											document.getElementById('twitters_content').style.display =	'block';										
											document.getElementById('twitter_button').style.backgroundPosition	=	'0 -322px';												
											document.getElementById('sidebar_twitters_header').style.marginBottom=	'0px';	
											/*
											document.getElementById('tab_holder_td').style.width==	'291px';						
											document.getElementById('map_holder_td').style.width=	'638px';		
											document.getElementById('map_canvas').style.width=	'638px';													
											*/
											break;																	
		/*									
		case 'sidebar_search_result'	:	document.getElementById('sidebar_search_content').style.height= 140;
											document.getElementById('sidebar_search_content').style.display =	'block';
											document.getElementById('sidebar').style.height = total_height - menu_headers_height -140 ;
											document.getElementById('sidebar').style.display =	'block';													
											break;
		*/
		case 'tag_cloud_content_result':	document.getElementById('sidebar').style.height = total_height - menu_headers_height ;
											document.getElementById('sidebar').style.display =	'block';		
											document.getElementById('location_button').style.backgroundPosition	=	'0 -322px';					
											document.getElementById('sidebar_location_header').style.marginBottom=	'0px';	
											/*
											document.getElementById('tab_holder_td').style.width==	'291px';						
											document.getElementById('map_holder_td').style.width=	'638px';			
											document.getElementById('map_canvas').style.width=	'638px';													
											*/
											break;
		case 'tag_cloud_content_result_only'		:	document.getElementById('sidebar').style.height = total_height - menu_headers_height ;
														document.getElementById('sidebar').style.display =	'block';
														document.getElementById('location_button').style.backgroundPosition	=	'0 -322px';		
														document.getElementById('sidebar_location_header').style.marginBottom=	'0px';		
														/*
														document.getElementById('tab_holder_td').style.width==	'291px';						
														document.getElementById('map_holder_td').style.width=	'638px';		
														document.getElementById('map_canvas').style.width=	'638px';													
														*/
														break;											
											
											
	}
}
