/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
 
 
$(document).ready(function() {
 
$("#nav ul").hide();
$("#nav li:has(ul)").each(function() {
$(this).children().slideUp(400);
});
 
$("li.p1:has(ul)").click(function(event){
if (this == event.target) {
var current = this;
$("#nav li:has(ul)").each(function() {
if (this != current) $(this).children().slideUp(400);
});
$("ul:first", $(this)).slideToggle(400);
}
});
 
$("li.p2:has(ul)").click(function(event){
if (this == event.target) {
var current = this;
$("li.p2:has(ul)").each(function() {
if (this != current) $(this).children().slideUp(400);
});
$("li.p3:has(ul)").each(function() {
if (this != current) $(this).children().slideUp(400);
});
$("ul:first", $(this)).slideToggle(400);
}
});
 
$("li.p3:has(ul)").click(function(event){
if (this == event.target) {
var current = this;
$("li.p3:has(ul)").each(function() {
if (this != current) $(this).children().slideUp(400);
});
$("ul:first", $(this)).slideToggle(400);
}
});
 
});
/* =========================================================== */
function mitglieder()
{
if (document.getElementById('mitglieder').style.display == "none") 
	{
	document.getElementById('mitglieder').style.display = "block";
	}
else
	{
	document.getElementById('mitglieder').style.display = "none";
	}
}
/* =========================================================== */
function check(){
setTimeout("document.getElementById('nav').style.display = 'block';",500);
}
/* =========================================================== */
function Vollbild(URL) {
window.open(URL, '', 'width=' + screen.width + ', height=' +screen.height+ ', top=0, left=0, resizable=yes, scrollbars=yes');
}
