
$(document).ready(function(){
//===========================================================

//-------------Memeber--------------------------
		$("div.Member").hide();
		//alert($("p.Testimonials").size());
		
		//Create Random Number between mina nd max and display that testimonial
		$.partners = {} //Declare namespace
		$.partners.PartnerRandomNumberAmount = $("div.Member").size(); //Counts total P's with class of Testimonials
		//alert($.partners.PartnerRandomNumberAmount);
		$.partners.PartnerRandomNumberID = Math.ceil(Math.random()*$.partners.PartnerRandomNumberAmount); //Random number and uses counter to get a random num at max of total P's
		//$.partners.PartnerRandomNumberID = 12; //Random number and uses counter to get a random num at max of total P's
		//alert($.partners.PartnerRandomNumberID);
		$.partners.PartnerParaPlusID = 'div#Member'+ $.partners.PartnerRandomNumberID; //Create the name of teh ID to turn on
			//alert($.docready.ParaPlusID);
		//End Create Random Number
		
		$($.partners.PartnerParaPlusID).show();

// All your code goes in here..............
	
	//alert($("#bodyLeft").height());
	//alert($("#bodyRight").height());
	//$("#bodyCushion").height($("#bodyLeft").height());
	//$("#bodyCushion").height(400);
	if ($("#bodyLeft").height() > $("#bodyRight").height())
		{
			$("#bodyCushion").height($("#bodyLeft").height());
		} else {
			$("#bodyCushion").height($("#bodyRight").height());
		}
	



});