function flashcontentembed() {
	var flashvars = {
		defaultVideo:"http://flash.sonypictures.com/video/tv/shows/jeopardy/minisites/teentournament-s26/rothenberg-rachel_winner_interview.mp4",
		defaultMediaName:"winners-interview"
		};
		
	var params = {
		allowscriptaccess:"always",
		wmode:"transparent"
	};
 
	var attributes = {
		id: "videoPlayerSwf",
		name: "videoPlayerSwf"
	};
											 
	swfobject.embedSWF("../_media/jeopPlayer_480x270.swf", "videoPlayerSwf", "499", "318", "9.0.15", "", flashvars, params, attributes);
}
addLoadEvent(flashcontentembed);

function playClip() {
	var links = document.getElementsByTagName('a');
	
	for (i=0;i<links.length;i++) {
        var link = links[i];
		
        if (( link.getAttribute ( 'href' ) ) && ( link.getAttribute ( 'rel' ) == 'clip' ) ) {
            link.onclick = function() {
                document.getElementById('videoPlayerSwf').playVideo(this.getAttribute('href'),this.name);
                window.scrollTo(0,70);
                return false;
        	}
		}
	}
}
addLoadEvent(playClip);