function startVideo( width, height ) {
	var target = document.getElementById( "watch" );
	if ( target == null ) return;

	var video = document.createElement( "div" );
	video.id = "video";

	var embed = document.createElement( "div" );
	embed.id = "embed";

	video.appendChild( embed );
	target.parentNode.appendChild( video );
	
	

var flashvars = {};
	flashvars.autoplay="1";
	flashvars.show_title = "0";
	flashvars.show_byline = "0";
	flashvars.show_portrait = "0";
	flashvars.color = "";
	flashvars.fullscreen = "1";

var params = {};
var attributes = {};

swfobject.embedSWF(
	"http://www.vimeo.com/moogaloop.swf?clip_id=1305178",
	"embed",
	width,
	height,
	"7.0.0",
	"/images/flash/expressInstall.swf",
	flashvars,
	params,
	attributes );	
	}

function stopVideo() {
	var video = document.getElementById( "video" );
	if ( video != null ) {
		video.parentNode.removeChild( video );
		}
	}

window.onunload = stopVideo;