/*

EQUAL-HEIGHT elements


1. You need to call jQUery BEFORE you call this script, so put the following in the <head> of your document:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>

2. In this script, make sure to change "yourAttr" and "yourAttr2" to names that are relevant to your document. If you need more than 2 heights to be compared, you'll need to look elsewhere.

3. Then, call this script, using the following text (replace $PATH with your own directory structure):

<script type="text/javascript" src="$PATH/equal-height.js"></script>

4. Hope it works!

*/


jQuery.noConflict();
jQuery(document).ready(function($){
	var lefty = "#bodyCopy" // "yourAttr" should be a specific "#idName" or ".className"
	var righty = "#sidebar" // "yourAttr2" should a different "#idName" or ".className"
	var leftHeight = $(lefty).height();
	var rightHeight = $(righty).height();
	if (leftHeight > rightHeight) {
		$(righty).height(leftHeight);
	} else {
		$(lefty).height(rightHeight);
	}
});