function global() {

	//shows/hides reasonboxes when dropdown changes

	$("select").change(function () {
		$(".reasonbox").hide();
		$("select option:selected").each(function () {
			str = "#" + $(this).val();
		});
		$(str).slideDown("slow");
	});


	//Scales header graphic size and height when window is less then 800px

	if ($().width() < 800) {
		$('#header img').jScale({ls:'550px'});
		$('#header').height(11+'em');
	}
}