//<![CDATA[

jQuery(window).load(function(){

	// Carousel 
	jQuery(".carousel").sliderkit({
		shownavitems:5,
		scroll:1,
		mousewheel: false,
		circular:true,
		start:2
	});
		
	var main_h  = jQuery('#topics').height() + jQuery('#contents_bottom').height();
	var right_h = jQuery('#info_column').height();
	var diff = right_h - main_h;
	
	if (diff > 0) {
		jQuery('#contents_bottom').css('padding-bottom', diff);
	}
});	

//]]>
