var query_def_text = "Søk";

$(document).ready(function()
{
	$("ul#menu ul").hide();
	$("ul#menu li").hover(
		function() { $(this).children("ul").show(); },
		function() { $(this).children("ul").hide(); }
	);

	$("input#query").val(query_def_text);
	$("input#query").focus(function()
	{
		if ($(this).val() == query_def_text)
		{
			$(this).val("");
		}
	});
	$("input#query").blur(function()
	{
		if ($(this).val() == "")
		{
			$(this).val(query_def_text);
		}
	});

	$('ul#slide_list').innerfade({ 
		animationtype: 'fade', 
		speed: 'slow', 
		timeout: 5000, 
		type: 'sequence', 
		containerheight: '130px',
		runningclass: 'innerfade',
		children: null
	}); 
});
