$(function()
{
	// Search form initialisation
	$("#q").focus(function()
	{
		if ($(this).val() == "Suche") $(this).val("");
	}).click(function(){$(this).focus();});
	
	
	$("#searchform").submit(function()
	{
		if (!$("#q").val())
		{
			alert("Bitte geben Sie zunächst einen Suchbegriff ein.");
			$("#q").focus();
			return false;
		}
	});
	
	$("UL#navigation LI.dropdown LI").mouseenter(function()
	{
		$(this).addClass("active");
	}).mouseleave(function()
	{
		$(this).removeClass("active");
	});

	
	// Collapsables
	$("A.collapsable").each(function()
	{
		var ra = $(this).attr("rel");
		var $rel = null;
		if (ra == "_next")
			$rel = $(this).next();
		else
			$rel = $("#"+ra);
		$(this).click(function()
		{
			$rel.toggle();
			return false;
		});
	});
	
});

