
$(document).ready(function() {
			$('.details_wrapper').show();
			$(".carousel").dualSlider({
				auto:true,
				autoDelay: 6000,
				easingCarousel: "swing",
				easingDetails: "swing",
				durationCarousel: 1000,
				durationDetails: 1000
			});			
		});
		
$(document).ready(function(){
	lowerContentFirst = $('#lower_content_first').height();
	lowerContentSecond = $('#lower_content_second').height();
	lowerContentThird = $('#lower_content_third').height();
	lowerContentFourth = $('#lower_content_fourth').height();
	
	maxHeight = Math.max(lowerContentFirst,lowerContentSecond,lowerContentThird,lowerContentFourth);
	
	$('#lower_content_first').height(maxHeight);
	$('#lower_content_second').height(maxHeight);
	$('#lower_content_third').height(maxHeight);
	$('#lower_content_fourth').height(maxHeight);
});

