// JavaScript Document
		var visivel = 0;
		// Controle para saber se o menu esta aberto ou fechado
		function altEstado(){
			if ( visivel == 1 ){
				visivel = 0;
				document.getElementById("mov").innerHTML="<img src=\"imagens/icones/icoabre.ico\" alt=\"<<\" />";	
				document.getElementById("sidebar").style.whiteSpace="nowrap";					
			}else{
				visivel = 1;
				document.getElementById("mov").innerHTML="<img src=\"imagens/icones/icofecha.ico\" alt=\"<<\" />";
				setTimeout("document.getElementById('sidebar').style.whiteSpace='normal' ",500);
			}
		}
		
		$(document).ready(function(){
			document.getElementById("sidebar").style.whiteSpace="nowrap";					
			document.getElementById("content").style.width="800px";								
			
			$("#mov").click(function(){				  
				  if( visivel == 0 ){
					  $("#sidebar").animate({ 
						width: "300px" 	
					  }, 500,altEstado() );
					  $("#content").animate({ 
						width: "570px" 	
					  }, 500 );
					  
					}else{
					  $("#sidebar").animate({ 
						width: "70px" 					
					  }, 500,altEstado() );				
					  $("#content").animate({ 
						width: "800px" 	
					  }, 500 );
					  
					}				
			});							
		});		
