// JavaScript Document

$(document).ready(function(){
	
	//find sidebar height
	var sidebarHeight = $("#sidebar").height();
	//find content height
	var contentHeight = $("#content").height();
	
	//reset content hieght if its shorter than the sidebar
	if ( contentHeight < sidebarHeight ) {
		$("#content").height(sidebarHeight);
	}

});//end jquery