var ligBoxConfig = {
    fixedNavigation: true,
    imageLoading:    '/design/plain_site/javascript/plugin/lightbox/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
    imageBtnPrev:    '/design/plain_site/javascript/plugin/lightbox/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
    imageBtnNext:    '/design/plain_site/javascript/plugin/lightbox/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
    imageBtnClose:   '/design/plain_site/javascript/plugin/lightbox/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
    imageBlank:      '/design/plain_site/javascript/plugin/lightbox/images/lightbox-blank.gif'			// (string) Path and the name of a blank image (one pixel)
}

$(document).ready(function(){
        // Aktiverer hover event for menyen
	$("ul.menu li").hoverIntent({
		interval: 50,
		over: drops_show,
		timeout: 300,
		out: drops_hide
	});
        $("ul.menu li ul.subnav").parent().append($("<span></span>"));

        $('a.lightBox-link').lightBox(ligBoxConfig);
        $('.scroll-pane').jScrollPane();
});

function drops_show(){  $(this).find("ul.subnav").slideDown('fast') }
function drops_hide(){  $(this).find("ul.subnav").slideUp('fast') }


