// JavaScript Document
jQuery('document').ready(function() {
	var curHeight = jQuery("#right_column").height();
	jQuery("#right_column").css('height', 'auto');
/*	var autoHeightIEOP = jQuery("#right_column").css('height', 'auto');
	if ((jQuery.browser.msie) && (jQuery.browser.opera)) {
		autoHeightIEOP = autoHeightIEOP + 20;
		jQuery("#right_column").css('height', autoHeightIEOP);
	} else {
		jQuery("#right_column").css('height', 'auto');		
	}*/
	var autoHeight = jQuery("#right_column").height();
	if (autoHeight > curHeight) {
		jQuery("#right_column").height(curHeight).animate({height: autoHeight}, 250);
		jQuery(".rightnavlist").css('visibility','visible').hide().fadeIn(250);	
	} else if (autoHeight < curHeight) {
		jQuery("#right_column").height(curHeight);
		jQuery(".rightnavlist").css('visibility','visible').hide().fadeIn(250);			
	}
});
