// Miscellaneous jQuery functions -- included on every page

$(document).ready(function() {

// Footer Address Changer
	$("#LocationSelect").change(function() {
		var theLocation = $(this).val();
		
		$("p#LocationAddress").slideToggle(400, function() {
			$("p#LocationAddress").delay(400).html(theLocation).slideToggle(400);
		});
		
		return false;
	});


});
