jQuery(document).ready(function(){
	jQuery('ul.merkevarer li').hover(function() { 
			jQuery('ul', this).show(); 
		},function() { 
			jQuery('ul', this).hide(); 
		}
	);



});


jQuery(document).ready(function(){
		$('#slideshow')
		.cycle({
		    fx:     'scrollLeft',
		    speed:   1000,
		    timeout: 6000,
		    pager:  '#nav' ,
		    pause:  '1'
		});


	/* This is basic - uses default settings */
	$("a.box").fancybox({
		'hideOnContentClick': false,
		'overlayColor'		: '#000',
		'autoDimensions'	: false,
		'width'				: 900,
		'height'			: 600,
		'overlayOpacity'	: 0.4
		
	});
	
	/* Using custom settings */
	$("a.inline").fancybox({
		'hideOnContentClick': false,
		'overlayColor'		: '#000'
		
	});

	/* Apply fancybox to multiple items */
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
	'overlayColor'		: '#000'
		
	});
	
	$(".iframe").fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'overlayColor'		: '#000'
	});

});

