	function jQ_moreTextOutFirst(thisMoreID){
			$('DIV#contentmore_'+thisMoreID).attr('style','display: none');
			$('DIV#close_'+thisMoreID).attr('style','display: none');
			$('DIV#move_'+thisMoreID).attr('style','display: block');
		}
		
	function jQ_moreTextOut(thisMoreID){
		$('DIV#move_contentmore_'+thisMoreID).slideUp("fast");
		$('DIV#close_'+thisMoreID).slideUp("fast");
		$('DIV#move_'+thisMoreID).slideDown("fast");
	}
	
	function jQ_moreTextOn(thisMoreID){
		$('DIV#move_contentmore_'+thisMoreID).slideDown("fast");
		$('DIV#move_'+thisMoreID).slideUp("fast");
		$('DIV#close_'+thisMoreID).slideDown("fast");
	}
	
	function jQ_moreLinkPositon(thisMoreID,thisRunner){
		var thisNewText='';
		
		$('DIV','DIV#'+thisMoreID).has('p').each(function(){
			$(this).find('> p').last('p').attr('id','target_'+thisMoreID);
			$('DIV#'+thisMoreID).find('DIV.csc-header').attr('id','headmove_'+thisMoreID);
			$('DIV#'+thisMoreID).find('DIV.csc-textpic-text').attr('id','headtarget_'+thisMoreID);
		}
		);
		$('DIV#more_'+thisMoreID).clone().attr('style','display: block').attr('id','move_'+thisMoreID).insertAfter('p#target_'+thisMoreID);
		$('DIV#contentmore_'+thisMoreID).removeClass('con_moreabstand').clone().attr('id','move_contentmore_'+thisMoreID).insertAfter('DIV#move_'+thisMoreID);
		$('DIV#contentmore_'+thisMoreID).remove();
		$('DIV#more_'+thisMoreID).remove();
		
		thisInsertText=$('DIV#headmove_'+thisMoreID).html();
		thisClass=$('DIV#headmove_'+thisMoreID).attr('class');
		
		thisInsertText='<div class="'+thisClass+'">'+thisInsertText+'</div>';
		thisText=$('DIV#headtarget_'+thisMoreID).html();
		thisNewText=thisInsertText + thisText;
		
		$('DIV#headtarget_'+thisMoreID).html(thisNewText).each(function(){
			$('DIV#headmove_'+thisMoreID).remove();
		}
		);
		

		$('DIV.undefined').remove();
	}
	
	function jQ_andMore(){
		$('DIV.con_element').each(function(){
			jQ_moreTextOutFirst($(this).attr('id'));
			jQ_moreLinkPositon($(this).attr('id'),1);
		}
		);
	}
	
	
	function jQ_ContactTitel(){
		thisLogoNameArray=$('DIV#messelogo > a').find('img').attr('src').split('/');
		thisLanguageArray=thisLogoNameArray[thisLogoNameArray.length-1].split('.');
		thisLanguageArray=thisLanguageArray[0].split('_');
		thisLanguage=thisLanguageArray[thisLanguageArray.length-1];
				
		$('DIV.wtdirectory_all_title').each(function(){
			thisTitelAll=$(this).text();
			thisTitleArray=thisTitelAll.split('|');
					
			if(thisTitleArray.length==1){
				thisTitel=thisTitleArray[0];
			}
			else{
				switch (thisLanguage){
					case'0':
						thisTitel=thisTitleArray[0];
						break;
						
					default:
						thisTitel=thisTitleArray[1];
						break;
						
					}
				}
				$(this).text(thisTitel);
			}
		)
	}

