$(function()
{
	// Search form initialisation
	$("#q").focus(function()
	{
		if ($(this).val() == "Suche") $(this).val("");
	});
	
	$("#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");
	});

	// Dropdown Manager (only necessary for IE6, all modern browsers don't need this, but anyway...)
	$("UL#navigation LI.dropdown").mouseenter(function()
	{
		$("UL.dropdown", this).show();
		$(this).addClass("dropdown_active");
	}).mouseleave(function()
	{
		$("UL.dropdown", this).hide();
		$(this).removeClass("dropdown_active");
	});
	
});
