$(".video-button a").click(function() {
								   
	$("#home-wrapper2").append('<div id="video-window"><div id="video-player"><div class="flashneeded">The Adobe Flash player is required</div></div><div id="video-window-close"><a href="#close">Close video player</a></div></div>');
	
	$("#video-window-close").click(function() {
		$("#video-player").remove();
		$("#video-window").remove();
		return false;
	});

	if (DetectFlashVer(8,0,0)) { // if we can detect the right version of flash
		var flashvars = {};
		var params = {};
		params.loop = "false";
		params.menu = "false";
		params.wmode = "transparent";
		var attributes = {};
		
		swfobject.embedSWF("/sites/all/themes/creeledrev/flash/home_player.swf", "video-player", "752", "452", "8.0.0", false, flashvars, params, attributes);		
	}

	return false;
});
