function showTopMenu() {
	var thisMenu;
	
	changeOpac(0, 'TopMenu');

	thisMenu = '<div style="width: 100%; height: 24px; background-color: #000060; color: white; font-size: 12px;">'
	
	
	thisMenu += '<div onclick="showNotifications(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/item_24.gif" height=16 width=16 align=center> notifications</div>'
	
	thisMenu += '<div onclick="showProfiles(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/contact_24.gif" height=16 width=16 align=center> my profile</div>'

	thisMenu += '<div onclick="showSettings(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/configuration_16.gif" height=16 width=16 align=center> settings</div>'

	thisMenu += '<div onclick="showEmail(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/read_mail_16.gif" height=16 width=16 align=center> mail</div>'

	thisMenu += '<div onclick="showChat(\''+globalUID+'\'); showChatMembers(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/group_24.gif" height=16 width=16 align=center> chat</div>'
	
	thisMenu += '<div onclick="showVideos(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/film_16.gif" height=16 width=16 align=center> videos</div>'

	thisMenu += '<div onclick="showAlbums(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/doc_image_16.gif" height=16 width=16 align=center> photo albums</div>'

	thisMenu += '<div onclick="showBlogs(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/contract_16.gif" height=16 width=16 align=center> blogs</div>'

	thisMenu += '<div onclick="showExtras(\''+globalUID+'\');" style="display: block; float: left; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';"><img src="/images/module_collection_16.gif" height=16 width=16 align=center> extras</div>'


	thisMenu += '<div id="CurrentUserWnd" onclick="showProfiles(\''+globalUID+'\');" style="display: block; float: right; cursor: pointer; line-height: 20px; padding-left: 5px; padding-right: 5px; padding-top: 2px; padding-bottom: 2px;" onmouseover="this.style.backgroundColor=\'#838383\';" onmouseout="this.style.backgroundColor=\'\';">'+globalFullName+'</div>'
	
	
	thisMenu += '</div>';

	document.getElementById('TopMenu').innerHTML = thisMenu;

	displayLayer('TopMenu');
}