// JavaScript Document
$(document).ready(function(){
	$('#stateSelector').change(function(){
		window.location = 'view_state.php?id=' + $('#stateSelector').val();
	});
	
	$('#stateSelector').change(function(){
		navigateToState( this );
	});
	
	$('#stateProfileLink').click(function(){
		$('#stateSelectorArea').toggle('slow');
	});
	
});

