$(function(){
	var videoId = 'welcomeVideoObj';
	var videoFile = '/data/video/2009_tv_advertisement_web.mp4';
	var videoHeight = '240';
	var videoWidth = '317';
	var fullscreen = false;

	var $video = $("a#" + videoId);
	var $videoWrapper = $video.parent();
	var $splashOverlay = $("img",$video);
	var $infoField = $("div.info",$videoWrapper);
	
	var flowplayerConfig = "{" + 
		"'clip': { " +
			"'url': '" + videoFile + "' " +
		"}," +
		"'plugins': {" +
			"'controls': { " +
				"'fullscreen': " + fullscreen +
			"}" +
		"}" +
	"}";
	var flowplayerParams = {
			allowfullscreen : fullscreen,
			wmode : "transparent"
	};
	
	$video.removeAttr('href');
	$infoField.css({'opacity':'0.9'}).hide();
	$videoWrapper.hover(function(){
			$infoField.stop(false, true).slideDown("fast");
			$splashOverlay.stop(false, true).fadeTo("fast",0.9);
		},function(){
			$infoField.stop(false, true).slideUp("fast")
			$splashOverlay.stop(false, true).fadeTo("fast",0.5)
		}
	);
	$videoWrapper.bind('click',function() {
		$infoField.remove();
		$splashOverlay.remove();
        swfobject.embedSWF("/php/library/video/flowplayer-3.1.5.swf", videoId, videoWidth, videoHeight, "9.0.0", "/php/library/video/express_install.swf", { config: flowplayerConfig }, flowplayerParams);
		$(this).unbind('click');
    });
});