﻿// JavaScript Document

/**
 * Legt Mausevents für die LIs und dem Element mit der ID #navigation an
 *
 */

 
$(document).ready(function(){
	$("#navigation > LI").mouseover(function(){
		$(".submenu1", this).show();
		$(".submenu1 ul:last").addClass("last")
		$(this).addClass("selected");
	});
	$("#navigation > LI").mouseout(function(){
		$(".submenu1", this).hide();
		$(this).removeClass("selected");
	});
	
	// Positionierung der Logomap
	var x = $("#navigation").attr("scrollHeight");
	x = x+210;
	$(".Tabelle_01").css("top", x+"px");
});


/**
 * Mehr-Links im Content
 * 
 */
$(document).ready(function(){
	$('.readmore').bind('click', function(){
		var moreDiv = $(this);
		if ($(this).next('.morecontent').css('display') == 'none') {
			$(this).next('.morecontent').slideDown('slow');
		}

		else {
			$(this).next('.morecontent').hide('slow');		
		}
		
		return false;
	})
})