jQuery(document).ready(function() {

	jQuery("#video-pop").focus(function() {jQuery(this).val('');});
	
	//Popup Video Source with controls 
	var src = "http://expressionengine.com/global/video";
	$('#video').click(function(){
	jQuery('<iframe src="' + src + '" height="380" width="660" scrolling="no" style="border:0;overflow:hidden;">').modal({
                close:true,
                closeHTML:"X",
                containerCss:{
		height:380,
		padding:0,
		width:660.
	         },
	  	position: ['3%'],
	  	overlayClose:true
			});return false;
		});
});
