jQuery(document).ready(function(){
	// TOPNAV HOVER
	jQuery(".topnav a").hover(
		function() { jQuery('.hover', this).fadeIn('fast'); },
		function() { jQuery('.hover', this).fadeOut('fast'); 
	});
	// SLIDESHOW
	jQuery('.karusell div').cycle({ 
		fx: 		'fade', 
		speed: 		2000, 
		timeout: 	7000,
		delay:		-2000,
		random:   	1
	});
	// LIGHTBOX
	//jQuery('a[rel*=lightbox]').lightBox();
	// GALLERYVIEW
	jQuery('#bildeGalleri').galleryView({
			gallery_width: 500,
			gallery_height: 400,
			frame_width: 70,
			frame_height: 50,
			pause_on_hover: true
		});
});


