    var $jQ = jQuery.noConflict();

	$jQ(document).ready(function() {
	  
	  if ( $jQ("#loginform").length > 0 ) {
		$jQ('#loginform').hide();
	  }
	  if ( $jQ("#submenu_newmember").length > 0 ) {
		$jQ('#submenu_newmember').hide();
	  }
	  if ( $jQ("#submenu_commissies").length > 0 ) {
		$jQ('#submenu_commissies').hide();
	  }
	  if ( $jQ("#submenu_allestanden").length > 0 ) {
		$jQ('#submenu_allestanden').hide();
	  }
	  if ( $jQ("#submenu_teamfotos").length > 0 ) {
		$jQ('#submenu_teamfotos').hide();
	  }
	});

 
function togglelogin()
{
	//$jQ("#debug").html("abc");
	$jQ("#loginform").toggle();
}
function toggle_submenu_newmember()
{
	//$jQ("#debug").html("abc");
	$jQ("#submenu_newmember").toggle("slow");
}
function toggle_submenu_allestanden()
{
	//$jQ("#debug").html("abc");
	$jQ("#submenu_allestanden").toggle("slow");
}

function toggle_submenu_teamfotos()
{
	//$jQ("#debug").html("abc");
	$jQ("#submenu_teamfotos").toggle("slow");
}

function toggle_submenu_commissies()
{
	//$jQ("#debug").html("abc");
	$jQ("#submenu_commissies").toggle("slow");
}


