

$(document).ready(function() {
	// Generelle variabler
	var søkBoksStandard = "Søk her";

        // first example
	$("#main_nav").treeview({
		collapsed: true,
		unique: true,
		persist: "location"
	});

	// Initialiserer fancybox bildevisning
	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});
	
	// Gjemmer standardteksten til søkeboksen 
	$("#query").focus(function(){
		if($(this).attr("value") == søkBoksStandard) $(this).attr("value", "");
	});
	
	// Viser standardteksten til søkeboksen
	$("#query").blur(function(){
		if($(this).attr("value") == "") $(this).attr("value", søkBoksStandard);
	});
	
});
