/*------------------------------------------------------------------------
# SC_TURNKEY
# ------------------------------------------------------------------------
# Copyright (C) 2008-2009 SMARTCHOICESITES. All Rights Reserved.
# @license - Copyrighted Commercial Software
# Author: SMARTCHOICESITES.COM
# Websites:  http://www.smartchoicesites.com
# Email: sales@smartchoicesites.com
-------------------------------------------------------------------------*/


// JavaScript Document

window.addEvent('domready', function(){
	equalHeights('#sc-usermodules1 .moduletable');
	equalHeights('#sc-usermodules2 .moduletable');
}); 


function equalHeights(id) {
var height = 0;

divs = $$(id);
 
divs.each( function(e){
 if (e.offsetHeight > height){
  height = e.offsetHeight;
 }
});
 
divs.each( function(e){
 e.setStyle( 'height', height + 'px' );
 if (e.offsetHeight > height) {
  e.setStyle( 'height', (height - (e.offsetHeight - height)) + 'px' );
 }
}); 


}
