jQuery(document).ready(function() {

	jQuery("#video-pop").focus(function() {jQuery(this).val('');});
	
	//Popup Video Source with controls 
	var src = "http://mojomotor.com/index.php/global/video2";
	$('#video-holder').click(function(){
	jQuery('<iframe src="' + src + '" height="400" width="700" style="border:0">').modal({
                closeHTML:"",
                ontainerCss:{
		backgroundColor:"#e4eff4",
		height:400,
		padding:0,
		width:700
	         },
	  	position: ['2%'],
	  	overlayClose:true
			});
		});

});
