// JavaScript Document

// List Menu Selection
$(document).ready(function() {
		$('#geralSubmit').click(function(){
			ob = this.form.selectbox_goto;
			window.open(ob.options[ob.selectedIndex].value, '_top'); 
			return false;
		});
		$('#gabineteSubmit').click(function(){
			ob = this.form.selectbox_goto01;
			window.open(ob.options[ob.selectedIndex].value, '_top'); 
			return false;
		});
		$('#secretariaSubmit').click(function(){
			ob = this.form.selectbox_goto02;
			window.open(ob.options[ob.selectedIndex].value, '_top'); 
			return false;
		});
		$('#coordenadoriaSubmit').click(function(){
			ob = this.form.selectbox_goto03;
			window.open(ob.options[ob.selectedIndex].value, '_top'); 
			return false;
		});
		$('#autarquiaSubmit').click(function(){
			ob = this.form.selectbox_goto04;
			window.open(ob.options[ob.selectedIndex].value, '_top'); 
			return false;
		});
		$('#conselhoSubmit').click(function(){
			ob = this.form.selectbox_goto05;
			window.open(ob.options[ob.selectedIndex].value, '_top'); 
			return false;
		});
		$('#orgaoSubmit').click(function(){
			ob = this.form.selectbox_goto06;
			window.open(ob.options[ob.selectedIndex].value, '_blank'); 
			return false;
		});
	 });	
