/**
* Copyright (c)2008 44 Interactive. All Rights Reserved.
*
* SVN File: $Id: base.js 72 2008-06-05 12:06:42Z Mike Neugebauer $
* @author $Author: Mike Neugebauer $
* @version $Revision: 72 $
* @lastrevision $Date: 2008-06-05 07:06:42 -0500 (Thu, 05 Jun 2008) $
* @modifiedby $LastChangedBy: Mike Neugebauer $
* @lastmodified $LastChangedDate: 2008-06-05 07:06:42 -0500 (Thu, 05 Jun 2008) $
* @filesource $URL: svn+ssh://miken@svnhost/svnhome/base/branches/nextstage/cms_js/base.js $
*/
 
	
	function playVideo( videoId ) { 
	
	$('#vid_' + videoId).html(
	
		'<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=' + videoId + '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1&amp;autoplay=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=' + videoId + '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1&amp;autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object> ' );
		
	 $('#vid_' + videoId).show();	
	 
	 $('#vidstop_' + videoId).show();
	 $('#vidplay_' + videoId).hide();	
		
		
	} 
	
	
	function stopVideo( videoId ) { 
	
	 $('#vid_' + videoId).html( '' );
		
	 $('#vid_' + videoId).hide();	
	 
	 $('#vidstop_' + videoId).hide();
	 $('#vidplay_' + videoId).show();	
		
		
	} 	

	 