/**
 * Video management script
 */
(function($){
	/**
	 * Add event handler to the video link
	 */
	$('#videoShowLink').bind('click',handleVideoShowClick);
	$('#videoHideLink').bind('click',handleVideoHideClick);
	
	/**
	 * Init the video
	 */
	flowplayer(
		"player",
        '/flowplayer/flowplayer-3.2.7.swf'
	);
	
	/**
	 * Video initialization handler
	 */
	function handleVideoShowClick(event) {
		// Show the overlay
		$('#overlay').fadeIn('fast');
		// Return false to prevent page action
		return false;
	}
	
	/**
	 * Video closure handler
	 */
	function handleVideoHideClick(event) {
		// Hide the overlay
		$('#overlay').fadeOut('fast');
		// Return false to prevent page action
		return false;
	}

	
}(jQuery));

