$(document).ready( function($) {
/*	var content = $('#right-content').outerHeight();
	var all_height = 483 + 363 + 37 + 30;
	var margin = Math.floor((content - all_height) /3);
	
	$('.facial_left_images').each(function(index) {
		$(this).css('margin-top',margin+'px');
  });*/
  
 	function biggestNumber(){
		return Math.max.apply(this,arguments);
	}	
	
	/* adjust height of columns */
	var left = $('#left-content').outerHeight();
	var right = $('#right-content').outerHeight();
	
	var highest = biggestNumber(left,right);
	
	if (highest > 0) {
		/*$('#left-content').height(highest);
		$('#right-content').height(highest);*/
	}

});
