	//####### Initial video load
			$f("player", {src: "swf/flowplayer-3.1.2.swf"}, { 
				//####### on finish video animation
				clip: { 
					onFinish: function(){
						if (!this.isFullscreen()) {
							$f("player").unload(); 
							$("#player").animate({width:180, height:146}, 2000);
						}
					}   
				}
			});
			//####### Capture video load and perform video animation
			$f("player").onBeforeClick(function() { 
				return false; 
			}); 
			//####### Initiate video animation
			$("#player").click(function() { 
				// perform resizing animation in 3 seconds 
				$(this).animate({width:320, height:260}, 2000, function() { 
					// when animation finishes we will load our player. voila.     
					$f(this).load(); 
				});     
			});
