(function() {
	var changeMethod = function(index) {
		jQuery('div.office').hide().eq(index).show();
	}
	jQuery('#officeMenu').show().bind('change', function() {
		changeMethod(jQuery(this).get(0).selectedIndex);
	});
	changeMethod(jQuery('#officeMenu').get(0).selectedIndex);
})();