/*

Javascript for Private Placement
Created by Rareview Interactive
http://www.rareview.com

*/

/* =jQuery
============================================================================== */
	
$(document).ready(function() {

	/* =Left column min-height should be no less than right column height
	-------------------------------------------------------------------------- */
		
		var rightColHeight = $('#columns .rightCol').height();
		$('#columns .leftCol').css({'min-height': rightColHeight + 350});
		
	    
}); // end jQuery ready

