var oldProfileSectionId = 0;

function switchProfileSection(profileSectionID) {
	jQuery('li#profileSectionLink' + oldProfileSectionId).removeClass('show');
	var oldProfileSectionName = jQuery('li#profileSectionLink' + oldProfileSectionId).html();
	jQuery('li#profileSectionLink' + oldProfileSectionId).html('<a href="javascript:switchProfileSection(' + oldProfileSectionId + ')">' + oldProfileSectionName + '</a>');
	jQuery('div#profileSection' + oldProfileSectionId).css("display", "none");

	jQuery('div#profileSection' + profileSectionID).css("display", "block");
	jQuery('li#profileSectionLink' + profileSectionID).addClass('show');
	var profileSectionName = jQuery('li#profileSectionLink' + profileSectionID).children("a").html();
	jQuery('li#profileSectionLink' + profileSectionID).html(profileSectionName);
	
	oldProfileSectionId = profileSectionID;
	document.getElementById('profileIVWContainer').innerHTML = "<img src=\"http://unicum.ivwbox.de/cgi-bin/ivw/CP/liekus;?r="+escape(document.referrer)+"&d="+(Math.random()*100000)+"\" width=\"1\" height=\"1\" alt=\"szmtag\" />";
	
}

