<!-- Hide from older browsers

function jumpPage(newLoc) {

    newPage = newLoc.options[newLoc.selectedIndex].value

    if (newPage != "") {
		window.location = newPage;
	}
}
 
$(document).ready(function () 
{	

	
	var page = window.location.hash;
				
	if (page != "" && page != undefined) {
		$.scrollTo(page, 1, {offset:-116});
		
	}
	
	$('#newLocation').change(function(){							  
		if ($($('#newLocation option:selected').val()).length > 0) {							  
			$.scrollTo($('#newLocation option:selected').val(), 800, {offset:-116});
		} else {
			if ($('#newLocation option:selected').val() != "") {
				linkLocation = "/index.php"+$('#newLocation option:selected').val();
				jumpPage(linkLocation);
				
			}
		}
	});

	
	/*$('#newOtherLocation').change(function(){											   
		if ($($('#newOtherLocation option:selected').val().replace('info.php', '')).length > 0) {							  
			$.scrollTo($('#newOtherLocation option:selected').val().replace('info.php', ''), 800, {offset:-90});
		} else {
			if ($('#newOtherLocation option:selected').val() != "") {
				linkLocation = $('#newOtherLocation option:selected').val();
				$("body").fadeOut(600, redirectPage);
			}
		}
	});*/
	
});

// End hiding from older browsers -->
