var $jQuery = jQuery.noConflict();

$jQuery(function(){

  /* Resize the columns */
  sidebarH = $jQuery('#sidebar').height();
  contentH = $jQuery('#content').height();
  
  if(sidebarH < contentH){
    $jQuery('#sidebar').height(contentH);
  } else {
    $jQuery('#content').height(sidebarH);
  }
  
  // Move the caption text
   var caption = jQuery('.wp-caption-text').html();
   jQuery('.image-caption').html(caption);
   //jQuery('.brand-link').html(caption);     
     
});
