var vSrc = new Array();
vSrc[1] = "http://www.youtube.com/v/39Ue8lmalM0&hl=en&fs=1&rel=0"
vSrc[2] = "http://www.youtube.com/v/SwcA46fAqdk&hl=en&fs=1&rel=0"
vSrc[3] = "http://www.youtube.com/v/82DByq-92r8&hl=en&fs=1&rel=0"
vSrc[4] = "http://www.youtube.com/v/ZQM95m4CMDs&h1=en&fs=1&rel=0"
vSrc[5] = "http://www.youtube.com/v/X67n9xnmA6A&h1=en&fs=1&rel=0"
vSrc[6] = "http://www.youtube.com/v/pcLLhIzhc6c&h1=en&fs=1&rel=0"

var vTitle = new Array();
vTitle[1] = "New Terrain Park at Snowmass"
vTitle[2] = "Matt Walker X-Games 13"
vTitle[3] = "More Cover Girl Snow Angels Invitational action featuring Gretchen Bleiler!"
vTitle[4] = "Wallace Westfeldt - In Memoriam"
vTitle[5] = "2009 AVSC Snowboard Team Video"
vTitle[6] = "Gretchen Bleiler SuperPipe Gold"


var vCopy = new Array();
vCopy[1] = "What's better than Halo for Christmas? A newly opened terrain park at Snowmass Mountain in Colorado. There is not a better way to celebrate the Holiday Season than hit up the park on Snowmass."
vCopy[2] = "Check out Aspen's own Matt Walker kill the 2009 winter X-Games slope style course. Vital Films presents the second HD webisode for aspensnowmass.com 09' season."
vCopy[3] = "The inaugural Cover Girl Snow Angels Invitational, featuring an all-female snowboard superpipe contest in Snowmass."
vCopy[4] = "Wallace Westfeldt passed away on April 4th, 2008 in a tragic snowboard accident. His life ended as he had chosen to live it, joyful in the mountains, sun, and powder snow which he loved so dearly. ...   "
vCopy[5] = "2009 AVSC Snowboard Team Video"
vCopy[6] = "Gretchen Bleiler SuperPipe Gold"

function videoMe() {
	copyMe('1');
}

function copyMe(zz) {
	xx = "<object width='425' height='264'><param name='movie' value='"+ vSrc[zz] +"></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src="+ vSrc[zz] +" type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='425' height='264'></embed>";
	
	myDiv = document.getElementById("expMedia");
	myDiv.innerText=null;
	myDiv.innerHTML=null;
	myDiv.innerText=xx;
	myDiv.innerHTML=xx;
	
	myDiv = document.getElementById("expTitle");
	myDiv.innerText=null;
	myDiv.innerHTML=null;
	myDiv.innerText=vTitle[zz];
	myDiv.innerHTML=vTitle[zz];
	
	myDiv = document.getElementById("expCopy");
	myDiv.innerText=null;
	myDiv.innerHTML=null;
	myDiv.innerText=vCopy[zz];
	myDiv.innerHTML=vCopy[zz];
}

