/*$(".menuBox ul li").hover(function() { //When trigger is clicked...
				
	$(this).find("ul.submenu").slideDown('fast').show();

	$(this).hover(function() {
	}, function(){	
		$(this).find("ul.submenu").slideUp('fast'); //When the mouse hovers out of the subnav, move it back up
	});

	
	}).hover(function() { 
		//$(this).addClass("subhover");
	}, function(){	//On Hover Out
		//$(this).removeClass("subhover");
});*/


function load_winkelmand(){
	$("#producten").load("/ajax/ajax.php?function=load_winkelmand");
}

$(document).ready(function() {
	//Activate FancyBox
	$("a.group").fancybox({
		'hideOnContentClick': false,
		'frameWidth':480,
		'frameHeight':385,
		'overlayShow':true,
		'titlePosition':'over'
	});

	$("#flash1").fancybox({
	    'padding'           : 0,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});

	$("#flash2").fancybox({
	    'padding'           : 0,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});

	$("#flash3").fancybox({
	    'padding'           : 0,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
			
	
	load_winkelmand();
	
	$.fn.cycle.defaults.speed   	= 150;
	$.fn.cycle.defaults.timeout 	= 4000;
	$.fn.cycle.defaults.continuous	= 0;
    $('#cycle').cycle();

	
});
