tooltip = null;
document.onmousemove = updateTooltip;

function updateTooltip(e) {
try {
x = (document.all) ? window.event.x + document.documentElement.scrollLeft : e.pageX;
y = (document.all) ? window.event.y + document.documentElement.scrollTop : e.pageY;
if (tooltip != null) {
tooltip.style.left = (x + -10) + "px";
tooltip.style.top = (y + 35) + "px";
}
} catch (error) { error=null; }
}

function showTooltip(id) {
try {
tooltip = document.getElementById(id);
tooltip.style.display = "block"
} catch (error) { error=null; }
}

function hideTooltip() {
try {
tooltip.style.display = "none";
} catch (error) { error=null; }
}









$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		animSpeed:300,
		pauseTime:10000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:true, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:true, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
      controlNavThumbsFromRel:false, //Use image rel for thumbs
		keyboardNav:true, //Use left & right arrows
		pauseOnHover:true, //Stop animation while hovering
		manualAdvance:true, //Force manual transitions
		captionOpacity:0.8, //Universal caption opacity
		beforeChange: function(){},
		afterChange: function(){},
		slideshowEnd: function(){} //Triggers after all slides have been shown
	});
});

$(window).load(function() {
	$('#slider2').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		animSpeed:300,
		pauseTime:10000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:true, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:true, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
      controlNavThumbsFromRel:false, //Use image rel for thumbs
		keyboardNav:true, //Use left & right arrows
		pauseOnHover:true, //Stop animation while hovering
		manualAdvance:true, //Force manual transitions
		captionOpacity:0.8, //Universal caption opacity
		beforeChange: function(){},
		afterChange: function(){},
		slideshowEnd: function(){} //Triggers after all slides have been shown
	});
});

$(window).load(function() {
	$('#slider3').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		animSpeed:300,
		pauseTime:10000,
		startSlide:0, //Set starting Slide (0 index)
		directionNav:true, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:true, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
      controlNavThumbsFromRel:false, //Use image rel for thumbs
		keyboardNav:true, //Use left & right arrows
		pauseOnHover:true, //Stop animation while hovering
		manualAdvance:true, //Force manual transitions
		captionOpacity:0.8, //Universal caption opacity
		beforeChange: function(){},
		afterChange: function(){},
		slideshowEnd: function(){} //Triggers after all slides have been shown
	});
});








$(document).ready(function()

						   
{
  //hide the all of the element with class msg_body
  $(".msg_body").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
    $(this).next(".msg_body").slideToggle(200);
  });
});

<!--// No Border Links
function UmrandungEntfernen(){
links=document.getElementsByTagName('a');
  for(i=0;i<links.length;i++)
  {
  links[i].onfocus=new Function("if(this.blur)this.blur()");
  }
}
onload=UmrandungEntfernen;



<!--// Logo Mouseover
if (document.images) {
 img_on =new Image();  img_on.src ="img/rundj_logo_1.gif"; 
 img_off=new Image();  img_off.src="img/rundj_logo_0.gif"; 
}

function handleOver() { 
 if (document.images) document.imgName.src=img_on.src;
}

function handleOut() {
 if (document.images) document.imgName.src=img_off.src;
}

//-->


// PRELOADING IMAGES
if (document.images) {


 img1_on =new Image(); img1_on.src ="img/rundj_team_2.jpg"; 
 img1_off=new Image(); img1_off.src="img/rundj_team.jpg"; 


}

function movr(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_on.src');
}

function mout(k) {
 if (document.images) 
  eval('document.img'+k+'.src=img'+k+'_off.src');
}

function handleOver() {
 if (document.images) 
  document.imgName.src=img_on.src;
}

function handleOut() {
 if (document.images) 
  document.imgName.src=img_off.src;
}


		   
<!--// Slider Einstellungen
		   function formatText(index, panel) {
		  return index + "";
	    }
    
        $(function () {
        
            $('.anythingSlider').anythingSlider({
                easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
                autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
                delay: 5000,                    // How long between slide transitions in AutoPlay mode
                startStopped: false,            // If autoPlay is on, this can force it to start stopped
                animationTime: 600,             // How long the slide transition takes
                hashTags: true,                 // Should links change the hashtag in the URL?
                buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
        		pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
        		startText: "",             // Start text
		        stopText: "",               // Stop text
		        navigationFormatter: formatText       // Details at the top of the file on this use (advanced use)
            });
            
            $("#slide-jump").click(function(){
                $('.anythingSlider').anythingSlider(6);
            });
            
        });
		
//-->


<!--// IMG Transparent Effekt
	$(document).ready(function() {
							$('.teaser, .port').hover(
								function() {
									$(this).animate(
										{ 
			    						opacity: 0.7
			    					},
			    					200
			    				);
								},
								function() {
									$(this).animate(
										{ 
			    						opacity: 1
			    					},
			    					200
			    				);
								}
							);
						});
	
$(document).ready(function() {
							$('.anythingSlider img').hover(
								function() {
									$(this).animate(
										{ 
			    						opacity: 0.7
			    					},
			    					200
			    				);
								},
								function() {
									$(this).animate(
										{ 
			    						opacity: 1
			    					},
			    					200
			    				);
								}
							);
						});
	
	$(document).ready(function() {
							$('.arrow').hover(
								function() {
									$(this).animate(
										{ 
			    						opacity: 0.5
			    					},
			    					200
			    				);
								},
								function() {
									$(this).animate(
										{ 
			    						opacity: 1
			    					},
			    					200
			    				);
								}
							);
						});
//-->
