function trpc_images(){
var myimages = [
	"images/memberpics/badoux-surf.jpg",
	"images/memberpics/berman_boof-Fikes.jpg",
	"images/memberpics/bl_gaull.jpg",
	"images/memberpics/boof_sinks.jpg",
	"images/memberpics/deck_dancing.jpg",
	"images/memberpics/first-island_LBS.jpg",
	"images/memberpics/hilton_baldRiver.jpg",
	"images/memberpics/prycl_teaching.jpg",
	"images/memberpics/sam_m_Meadow.jpg",
	"images/memberpics/macklin_upperY.jpg",
	"images/memberpics/jasonH_cheat.jpg",
	"images/memberpics/laurie_haugh-LowerY.jpg"
];

//linkys
//var imagelinks = [
//	"images/memberpics/baudouxs-topyough.jpg",
//];

//load corrosponding image titles
var imagenames = [
	"Bob Badoux Surfin'",
	"Berman boofing @ Fikes Creek",
	"Brian Lorence @ Upper Gauley",
	"Boofing @ the Sinks",
	"Deck Dancing @ Lower Yough",
	"First Island @ Lower Big Sandy",
	"Jason Hilton @ Bald River Falls",
	"Jeff Prycl Teaching Beginners",
	"Sam Mershon @ Meadow River",
	"Jeff Macklin @ Upper Yough",
	"Jason Hamilton @ the Cheat",
	"Laurie Haugh @ Lower Yough"
];

//do that date thing beotch
//var datething=new Date().getDate()%myimages.length;
var datething = Math.floor(Math.random()*myimages.length);
var imageuse=myimages[datething];
//var linkuse=imagelinks[datething];
var imagename=imagenames[datething];

document.write('<img src="'+imageuse+'" alt="'+imagename+'" /><p><span class="imgHead">Featured Member: </span>'+imagename+'</p>')
}

function trpc_sponsors(){
	var myImages = [
	//"http://www.threeriverspaddlingclub.com/images/sponsors/adventure_marine.jpg",
	"/images/sponsors/benners_logo.jpg",
	//"http://www.threeriverspaddlingclub.com/images/sponsors/boof_gear.gif",
	//"http://www.threeriverspaddlingclub.com/images/sponsors/calleva_logo.jpg",
	//"http://www.threeriverspaddlingclub.com/images/sponsors/hazelbakerlogo.jpg",
	//"http://www.threeriverspaddlingclub.com/images/sponsors/noc.jpg",
	"/images/sponsors/ORE_HOME_1.jpg",
	"/images/sponsors/rmk_logo_blue.jpg",
	"/images/sponsors/riversport.jpg",
	"/images/sponsors/cheeseman.jpg",
	"/images/sponsors/ors-racks.jpg",
	"/images/sponsors/t-gusInsurance.jpg"
	];
	
	//linkys
	var imagelinks = [
	//"#",
	"http://www.bennersmeadowrun.com/",
	//"#",
	//"#",
	//"#",
	//"#",
	"http://www.ore-equip.com/",
	"http://www.rockymountainkayak.com",
	"http://www.riversportonline.com/home.html",
	"http://www.cheesemanfarm.com/",
	"http://www.orsracksdirect.com/",
	"http://www.thompsongusic.com/"
	];

var datething = Math.floor(Math.random()*myImages.length); //throw dem at randomness
var imageuse=myImages[datething];
var linkuse=imagelinks[datething];

document.write('<a href='+'"'+linkuse+'"'+' target="_blank"><img src="'+imageuse+'" width="270" border="0" align="center"></a><p><a href="/about/sponsors/" title="Our Sponsors">View all our Sponsors</a></p>')
}