$(function() {
	if ($('.carousel ul').children("li").length > 0)
	{
		var nrItems = $('.carousel ul').children("li").length;
		if (nrItems > 4)
		{
			nrItems = 5;
		}
		$(".carousel").jCarouselLite({
		auto: 2,
	    speed: 2000,
	    visible: Number(nrItems),
	    vertical: true
	    });
	}
	
	if ($('.headPhoto ul').children("li").length > 0)
	{
		$(".headPhoto").jCarouselLite({
		auto: 1,
	    speed: 4000,
	    visible: 1,
	    vertical: true
	    });
	}
});

$(document).ready(function(){					
	
	
	$('#multi-ddm').dropDownMenu({timer: 1000, parentMO: 'parent-hover', childMO: 'child-hover1'});

	$("#contact").validate({
		submitHandler: function() 
		{ 
			$.post("forms/contact", $('form').serialize(),
					function(data){
						$('.contact_form').html(data);
			   });
			return false;
		}

	});
});
