$(document).ready(function(){

	$("#menu li").hover(function() {
		$(this).animate({height: "130px"}, "slow");
	}, function() {
		$(this).animate({height: "110px"}, "fast");
	});
	
	
	$('.aboutUsBlockBackground').hide();
	
	
	$(".aboutUsBlockTop").click(function()
	{
		$(this).next(".aboutUsBlockBackground").slideToggle(300).siblings(".aboutUsBlockBackground").slideUp("slow");
	});

	
	$("#quoteBlockContent").jCarouselLite({
		vertical: true,
		hoverPause: true,
		visible: 1,
		auto:8000,
		speed:3000
	});
	
	
});

