$(document).ready(function() {    
	left_height = $('.left','#wrap').height();
	right_height = $('.col','#wrap .right').height();
	max_height = left_height > right_height ? left_height : right_height;
	height_px = max_height-$(".top",'#news').height()-$(".bottom",'#news').height()-2;
	//    alert(left_height+' '+right_height+' '+max_height+' '+height_px);
	$(".content",'#news').css('display','');
	$(".content",'#news').jCarouselLite({
		btnNext: "#news_down",
		btnPrev: "#news_up",
		vertical: true,
		circular: false
	}).height(height_px);

	$("#polls a").fancybox({
		'hideOnContentClick': false,
		'centerOnScroll': false
	});

	$('#polls form').submit(function(){
		setTimeout('$.fn.fancybox.close()', 750);
	});
});
