// JavaScript Document

$(document).ready(function() {
	if(document.getElementById('selectRightNav')) {
		$('#selectRightNav').change(function() {
			var option = $('#selectRightNav').val();
			
			if(option != 0){
				var url = $('#urlForRightNav').val() + option;
				
				document.location.href = url;
			}
		});
	}
});