function JV_FullHeight() {

	var left_col = $('jv-left');
	var content_col = $('jv-center-right');
	
	var left_height = left_col.getCoordinates().height;
	var content_height = content_col.getCoordinates().height;

	if(content_height > left_height) {
		var height_seperator = content_height - left_height;
		$E('#jv-left .jv-left-bottom').setStyle('margin-top',height_seperator-20);
	}
}

//Add span to module title
window.addEvent ('load', function() {
	//setTimeout(JV_FullHeight,1000);
});

