 	function openVideo(theLink){

		$("#videoPlayer").html('<object width="580" height="458"><param name="movie" value="http://www.youtube.com/v/' +theLink + '?fs=1&hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' + theLink + '?fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="580" height="458" wmode="transparent"></embed></object>');
		window.location.href = '#top';
	}
	
	function initializeVideo(theLink){
		$("#videoPlayer").html('<object width="580" height="458"><param name="movie" value="http://www.youtube.com/v/' +theLink + '?fs=1&hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/' + theLink + '?fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="580" height="458" wmode="transparent"></embed></object>');
	}
	
	$(document).ready(function(){
		$("table tr:last-child td:last-child").css({display:"none"});
		$("table a:first-child").attr('onClick','openVideo($(this).attr("href").split("v=")[1].split("&")[0]); return false;');
		$("table div").attr('style','none');
		$('div[style*="width: 555"]').attr({
			width: "auto",
			style: "none"
		});
		$('td[width=256]').attr('width','700px');

		var first =	$("table a:first-child").attr("href").split("v=")[1].split("&")[0];
		initializeVideo(first);
	});




