

$(document).ready(function() {
/*
$("#foo3").carouFredSel({
	items 		: 1,
	direction	: "up",
	auto : {
		pauseOnHover: false,
		duration : 1000
	}
}).find(".slide").hover(
	function() { $(this).find("div").slideDown(); },
	function() { $(this).find("div").slideUp();	}
);
*/
$("a[rel='colorbox']").colorbox();

<!-- start menu -->
$('#jqstart').mouseover(function () {
    $('#menu_ags').hide("fast");
	$('#menu_projecten').hide("fast");
    });

<!-- ags menu -->
$('#jqags').mouseover(function () {
    $('#menu_ags').show("fast");
	$('#menu_projecten').hide("fast");
    });

$('#menu_ags').mouseleave(function () {
    $('#menu_ags').hide("fast");
    });

<!-- projecten menu -->
$('#jqprojecten').mouseover(function () {
    $('#menu_projecten').show("fast");
	$('#menu_ags').hide("fast");
    });

$('#menu_projecten').mouseleave(function () {
    $('#menu_projecten').hide("fast");
    });

<!-- actueel menu -->
$('#jqactueel').mouseover(function () {
    $('#menu_ags').hide("fast");
	$('#menu_projecten').hide("fast");
    });
	
<!-- contact menu -->
$('#jqcontact').mouseover(function () {
    $('#menu_ags').hide("fast");
	$('#menu_projecten').hide("fast");
    });

});

