// JavaScript Document



/* Left menu height */
$(document).ready(function() {
$leftheight = $(".leftmenu").height();
$middleheight = $(".middle_content").height();
$middleheight = parseInt($middleheight);


if ($leftheight > $middleheight) {
	$(".middle_content").height($leftheight);
}
else {
	
}
//$(".submenu_open_active").next("li").children("a").css("border-top", "1px solid #d9d8d8");


//Nivå 1
$(".leftmenu > li").bind("mouseenter", function() {
	
	$(this).children(".pil").show();
	
	$(".leftmenu > li").bind("mouseleave", function() {
	
		$(this).children(".pil").hide();
	
	});
});

//Nivå 2
$(".menu_open_active > ul > li").bind("mouseenter", function() {
	
	$(this).children(".pil").show();
	
	$(".menu_open_active > ul > li").bind("mouseleave", function() {
	
		$(this).children(".pil").hide();
	
	});
	});

//Nivå 3
$(".menu_open_active > ul > li > ul > li").bind("mouseenter", function() {
	
	$(this).children(".pil").show();
	
	$(".menu_open_active > ul > li > ul > li").bind("mouseleave", function() {
	
		$(this).children(".pil").hide();
	
	});
	});


});


/*
	
$("#refGalleryNav > li.dot").bind('click', function() {
$thisIndex = $(this).index();
$thisIndex = $thisIndex - 1;
$("#refGallery > li").hide();
$("#refGallery").find("li:eq("+$thisIndex+")").show().addClass("active");

$("#refGalleryNav > li.dotActive").find("img").attr('src', 'http://www2.svevia.se/images/18.ba20a681324e1e9b3d800045690/search_dot.gif');
$("#refGalleryNav > li.dotActive").removeClass("dotActive").addClass("dot");
$(this).addClass("dotActive");
$(this).removeClass("dot");
$(this).find("img").attr('src', 'http://www2.svevia.se/images/18.ba20a681324e1e9b3d800045691/search_dotActive.gif');
});


});
	//$("#galleryView > li:").attr('src', data);
	//$("#refGalleryNav > li.dot").eq().addClass('active');
*/




