$(document).ready(function(){


// Accordeon menu:
	$("#nav > li").each(function(){
		var height = $("ul", this).height();
		$(".parent", this).click(function(){
			if(!$(this).parent().hasClass("open"))
			{
				$("#nav li ul").animate({height: 0}).parent().removeClass("open");
				$("ul", $(this).parent()).stop().animate({height: height});
				$(this).parent().addClass("open");
			}
		});
		if(!$(this).hasClass("menuactive"))
		{
			$("ul", this).css({height: 0});
		}
	});
	
	$('#referentieCarousel').jcarousel({
		wrap: 'circular',
		scroll: 1
	});
	
	$("#brancheSelect").bind('change', function(){
		$("#brancheSelect option:selected").each(function (){
			window.location = $(this).val(); 
		});
	});
	
	$(".jcarousel-skin-tango .jcarousel-item img, .div124 .logo img, #klantlogo img").aeImageResize({ height: 100, width: 150 }); 

});
