﻿$(document).ready(
	function () {
	    // Header slideshow
	    $('.slideshow').cycle({
	        fx: 'fade',
	        speed: 5000,
	        timeout: 2000
	    });

	    // Menu
	    $("#menulevel1 li").mouseover(function () {
	        //i += 1;
	        //$(this).find("span").text("mouse over x " + i);
	        if ($(this).find("ul").length == 1) {
	            $(".selectedsubmenu").toggleClass("showsubmenu");
	            $(this).find("ul").css("display", "block");
	        }
	        //alert($(this).find("ul").length);
	    }).mouseout(function () {
	        //$(this).find("span").text("mouse out ");
	        if ($(this).find("ul").length == 1) {
	            $(this).find("ul").css("display", "none");
	            $(".selectedsubmenu").toggleClass("showsubmenu");
	        }
	    });

	    // Show / Hide submenuflame
	    //alert('Sub menu count: ' + $(this).find("ul").length);

	    //var menuLength = $(this).find("ul").length;
	    var menuLength = $("#menulevel1 .selected .selected").length;

	    //var menuLengthC = $("#menulevel1 .selected .selected");
	    //var menuLength2 = menuLengthC.length;
	    //alert('Sub menu count: ' + $(this).find("ul").class("selected").length);

	    //alert('menuLength ' + menuLength);
	    if (menuLength == 1) {
	        //alert('Sub menu count: ' + menuLength);
	        $("#submenuflame").css("display", "none");
	    }
	    else {
	        $("#submenuflame").css("display", "blok");
	    }
	}
)
