$(document).ready(function(){
	// make style changes in CSS based on the availability of JavaScript
	$("body").addClass("jsEnabled");

	// redirect to selected shortcut
	$('#shortcut_select').change(function(){
		window.location.href = $(this).val();
	});
	
	// zebra-stripe side navigation
	$("#nav2 ul").each(function(){
		$("li:even",this).addClass("even");
	});
}); // close document.ready
