// JavaScript Document
	 $(document).ready(function(){
				
		 //escondendo objetos no onload da pagina
		 $('#end_ban').hide();
		 $('#end_cont').hide();
		 $('#end_conf').hide();
		 $('#end_shop').hide();		 
	
		  //manipulando select
		  $('#endereco').change(function(){
				  var valueSelect = $('#endereco').val();
				  
				  if(valueSelect =='Matriz'){
					 $('#end_matriz').show('fast');
					 $('#end_ban').hide('fast');
					 $('#end_cont').hide('fast');
					 $('#end_conf').hide('fast');
					 $('#end_shop').hide('fast');
				  }
				  if(valueSelect =="Bandeirantes"){
					 $('#end_ban').show('fast');						
				  	 $('#end_matriz').hide('fast');
					 $('#end_cont').hide('fast');
					 $('#end_conf').hide('fast');
					 $('#end_shop').hide('fast');
				  }

				  if(valueSelect =="Contagem"){
					 $('#end_cont').show('fast');
					 $('#end_ban').hide('fast');
					 $('#end_matriz').hide('fast');					 
					 $('#end_conf').hide('fast');
					 $('#end_shop').hide('fast');
				  }
				  if(valueSelect =="Confins"){
					 $('#end_conf').show('fast');
					 $('#end_matriz').hide('fast');
					 $('#end_ban').hide('fast');
					 $('#end_cont').hide('fast');
					 $('#end_shop').hide('fast');
				  }	
				  if(valueSelect =="BHShopping"){
				   $('#end_shop').show('fast');
					 $('#end_ban').hide('fast');
					 $('#end_cont').hide('fast');
					 $('#end_conf').hide('fast');
					 $('#end_matriz').hide('fast');					 
				  }							
				     
		   });								 
});	 
