function switchVid(part,ID) {
	$("#videopart").html(part);

	var newvideo = '<object width="590" height="355"><param name="movie" value="http://www.youtube.com/v/' + ID + '&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/' + ID + '&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="590" height="355"></embed></object>';

	$("#player").html(newvideo);

	$('#videoslist > a').removeClass();
	$('#videoslist > a').addClass('thumbOff');
	$('#video'+part).removeClass();
	$('#video'+part).addClass('thumbOn');
}
