$(document).ready(function() {

	if($('.columns').is(':visible')){
	  //$('.columns').columnize({ columns:2 });	
	}
	
  $('#slider-1').codaSlider();  
  equalHeightsSEO();    
  // $('#news-content').jScrollPane();  
});

$(window).load(function () {

});


function equalHeightsSEO() {
  var h1 = $('#page-content-wrapper').height();
  var h2 = $('#news-wrapper').height();  
  
  /* if content is taller, make news taller to match */
  if(h1>h2){
  var h3 = h2 + (h1-h2)-30;  
  $('#news-wrapper').height(h3);  
  } else {
  /* if news is taller, make content taller to match */
  var h3 = h1 + (h2-h1)-30;  
  $('#page-content-wrapper').height(h3);  
  }
}
