$(document).ready(function(){

	$('#nav a').mouseover(function(evt){
		if($(this).attr('id') != 'var-verksamhet' && $(this).parent().parent().attr('id') != 'subnav') {
			$('#subnav').hide();
		}
	})
	
	$('#var-verksamhet').mouseover(function(evt){
		evt.preventDefault();
		$('#subnav').show();
	})
	
	var index = 0;
	var imgs = $('#gallery img');
	function changeTopImage() {
			currentindex = index;
			if(index >= $('#gallery img').length-1) {
				index = 0;
			}
			else {index++;}
			$('#gallery img').hide();
			//$(imgs[currentindex]).css();
			$(imgs[index]).show();
	}
	window.setInterval(changeTopImage,4000);
})

