// Even out bottom box divs on homepage
$(document).ready(function() {
   //--- Even out home boxes ---
	var group = $('#bottomContainer .box');
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
	
	//--- Tweets Carousel ---
	if($('.jcarousellite li').length > 0) {
		$(".jcarousellite").jCarouselLite({
			vertical: true,
			visible: 1,
			auto:5000,
			speed:1500
		});
	}
	
	
	
			$(".fancy").fancybox({
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
	
});
