// JavaScript Document
jQuery(function() {		

	jQuery("#yt_video").overlay({ 
	 
		// center overlay finishing position vertically 
		finish: {top: 'center'}, 
		expose: '#000000' 
	 
	});
});

function playvid(vid){
	
	jQuery("#video_place").html('<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/'+vid+'&hl=en&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/'+vid+'&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>');
	
	jQuery("#yt_video").overlay().load();
	
}

/*
Add to bottom of page

<div overlay="css/yt_overlay_img/white.png" style="background-image: none; position: absolute; top: 10px; left: 426.5px; z-index: 10000; display: none;" class="overlay" id="yt_video"><div style="z-index: 10000;" class="close"></div>
<div id="video_place"></div>
</div>

*/
