google.load("swfobject", "2.1");

function bigPlayer(code) {
	// The video to load.
	var videoID = code;
	// Lets Flash from another domain call JavaScript
	var params = { allowScriptAccess: "always", wmode: "transparent" };
	// The element id of the Flash embed
	var atts = { id: "youtube_big" };
	// All of the magic handled by SWFObject (http://code.google.com/p/swfobject/)
	swfobject.embedSWF("http://www.youtube.com/v/" + videoID + "?version=3&enablejsapi=1&playerapiid=player1", "youtube_big", "326", "200", "9", null, null, params, atts); 
}


