$(document).ready(function() {
    $('#slides').cycle({
		fx: 'fade'
	});
	
	/* This is basic - uses default settings */
	$("a.box").fancybox({
		'hideOnContentClick': true,
		'overlayColor'		: '#fff'
		
	});

	$("a.boxFixed").fancybox({
		'hideOnContentClick': false,
		'overlayColor'		: '#fff',
		'width'				: '75%'
	});
	
	/* Using custom settings */
	$("a.inline").fancybox({
		'hideOnContentClick': false,
		'overlayColor'		: '#fff'
		
	});

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

// MENU SLIDE
$(document).ready(function(){
$('#toppmeny ul li').hover(
function() { $('ul.level1', this).show(); },
function() { $('ul.level1', this).fadeOut('fast'); });
});

