$(document).ready(function() {
   (function() {
	   try {
		   sih = $('#sidebar').innerHeight();
		   cih = $('#contents').innerHeight();	
		   ch = $('#contents').height();

		   if (sih > cih) {
			   $('#contents').css('height',ch+(sih-cih)+'px');
		   }

         // new
         if ($('#contents').height() < 600) {
            $('#contents').height(600);
         }
	   } catch (e) {}		
   }());
});

