/*===========================================================================
	Behavior (Home)
	
	This JavaScript executes dynamic behaviors such as:
	* Preloading images
	* Flash Replacements (i.e. sIFR, UFO, SWFObject, etc.)
	* Decorate the DOM with presentational elements
	* Collapsing/expanding sections
	* Form validation
	* Popup windows
===========================================================================*/

$(document).ready(function() {
	var bodyClasses = ["reduced-conflict", "time-savings", "lower-costs"];
	
	var randomClass = Math.floor(3*Math.random());
	
	$("body").addClass(bodyClasses[randomClass]);
});
