function addOfficeMail() {
	document.write('<a href="mailto');
	document.write(':office&#x40;x-over');
	document.write('.com">office');
	document.write('&#x40;x-over.com</a>');
	}

function enlarge(divobject,hMax) {
	if ($('#'+divobject).css('height') == hMax ) {
		$('#'+divobject).css('height','190px');		
		}
	else {
		$('#'+divobject).css('height',hMax);
		}
	
	}
		
