/*

	Filename             sitewide.js
	Detail               Site functionality
	Author:              thunder::tech inc.
	License:             CLIENT is defined as the owner of online property from which this file resides or this code is referenced in.
						 ADDITIONAL PARTY is defined as anyone other than thunder::tech or CLIENT.
						 No right is granted to ADDITIONAL PARTY to sell, distribute, modify or otherwise transfer the following source code without explicit written permission by CLIENT or thunder::tech.

*/

/*  ================================
     Sitewide JavaScript
    ================================ */


$(window).load(function() {
	if($(".rightCol").height() < $(".leftCol").height()){ $(".rightCol").height($(".leftCol").height());	}
	
	if($(".orangeTable")){
		$(".orangeTable tr:nth-child(2n) td").css("background", "#CCC");
	}
});


