function menushow(element) {
  ulelement = element.lastChild;
  if (ulelement.tagName == 'UL') {
    act = ulelement;
  }
  else {
    act = false;
  }
    if (act) {
    act.style.display='block';
  }
}

function menuhide(element) {
  ulelement = element.lastChild;
  if (ulelement) {
    if (ulelement.tagName == 'UL') {
      act = ulelement;
    }
    else {
      act = false;
    }
    if (act) {
      act.style.display='none';
    }
  }
}

jQuery.noConflict();
jQuery(document).ready(function(){

 	jQuery('#project_text').jScrollPane({
		showArrows: true,
		scrollbarWidth: 14
	});
	
	if(jQuery('#project_text').length == 0) {
		jQuery('#col1_content').jScrollPane({
			showArrows: true,
			scrollbarWidth: 14
		});
	}
	
	jQuery('.obscureAddMid').text('@');
	jQuery('.obscureAddEnd').text('.');
	
	jQuery("#datenschutz_ok").hover(
		function(){
			jQuery("#datenschutz").toggle();
		},
		function () {
			jQuery("#datenschutz").toggle();
		}
	);
    
    jQuery('#mehr').click(
        function() {
            jQuery('.menu43 ul').show();
            return false;
        }
        
        
    );
	
});
 