/* Detta script finns att hämta på http://www.jojoxx.net och
får användas fritt så länge som dessa rader står kvar. */
function update(){
   	now = new Date();
    h = now.getHours();
    min = "0" + now.getMinutes();
    min = min.substring(min.length-2, min.length);
    sec = "0" + now.getSeconds();
    sec = sec.substring(sec.length-2, sec.length);
    document.clock.displayClock.value = " " + h + ":" + min + ":" +sec;
    setTimeout("update()", 1000);
}

function onAfter(curr, next, opts) {
    var index = opts.currSlide;
    $('#prev')[index == 0 ? 'hide' : 'show']();
    $('#next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
}

function mainmenu(){
	$(" #nav ul ").css({display: "none"}); // Opera Fix

	$(" #nav li").hover(function(){
		$(this).find('ul:first').fadeIn("slow");
	},
	function(){
		$(this).find('ul:first').fadeOut("fast");
	});
}

$(document).ready(function(){					
	mainmenu();
	
	
});





