var $j = jQuery.noConflict();

$j(document).ready(function(){


/* automaticallly set the height of the side navigation to 
the height of the main content area */

var mainContentHeight = $j("#main-content").height();
 $j(".side-nav").height(mainContentHeight);




});
