<!-- Begin Javascript

// MY SCRIPTS

// Use this area to add new scripts that you need for your site

function changeVideo(videoURL){    
	var player = document.getElementById('player');    
	var child = player.firstChild;        // test for image tag and replace with movie    
	if (child.tagName == 'img')        
		player.replaceChild(child, buildEmbed(videoURL));    
	else        
		child.src = videoURL;
}  
	
function buildEmbed(movie){    
	var embd = document.createElement('embed');    
	embd.src = movie;    
	embd.type = "application/x-shockwave-flash";    
	embd.flashvars="&subtitle=on"    
	embd.style.width = "400px";    
	embd.style.height = "326px";    
	
	return embd;
}

function changeGraph(img_alt,img_src,img_title,img_big_href) {
	document.getElementById('graphImage').src=img_src;
	document.getElementById('graphImage').alt=img_alt;
	document.getElementById('graphTitle').innerHTML = img_title;
	document.getElementById('graphLink').href = img_big_href;
}


// End Javascript -->